Skip to content

Commit

Permalink
chore: fix analyzer issues
Browse files Browse the repository at this point in the history
  • Loading branch information
KRTirtho committed Apr 15, 2024
1 parent 05ace91 commit 6e11975
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/src/models/album.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class Album extends AlbumSimple {

factory Album.fromJson(Map<String, dynamic> json) => _$AlbumFromJson(json);

@override
Map<String, dynamic> toJson() => _$AlbumToJson(this);

/// The copyright statements of the album.
Expand Down
1 change: 1 addition & 0 deletions lib/src/models/artist.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class Artist extends Object implements ArtistSimple {

factory Artist.fromJson(Map<String, dynamic> json) => _$ArtistFromJson(json);

@override
Map<String, dynamic> toJson() => _$ArtistToJson(this);

/// Known external URLs for this artist.
Expand Down
1 change: 1 addition & 0 deletions lib/src/models/playlist.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class Playlist extends Object implements PlaylistSimple {
factory Playlist.fromJson(Map<String, dynamic> json) =>
_$PlaylistFromJson(json);

@override
Map<String, dynamic> toJson() => _$PlaylistToJson(this);

/// true if the owner allows other users to modify the playlist.
Expand Down
1 change: 1 addition & 0 deletions lib/src/models/track.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class Track extends Object implements TrackSimple {

factory Track.fromJson(Map<String, dynamic> json) => _$TrackFromJson(json);

@override
Map<String, dynamic> toJson() => _$TrackToJson(this);

/// The album on which the track appears. The album object includes a link
Expand Down
1 change: 1 addition & 0 deletions lib/src/models/user.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class User extends Object implements UserPublic {

factory User.fromJson(Map<String, dynamic> json) => _$UserFromJson(json);

@override
Map<String, dynamic> toJson() => _$UserToJson(this);

/// The user's date-of-birth.
Expand Down

0 comments on commit 6e11975

Please sign in to comment.