PlaylistModel constructor

PlaylistModel({
  1. required String id,
  2. required String name,
  3. required bool collaborative,
  4. required List<ImageModel> images,
  5. required UserModel owner,
  6. required bool public,
  7. required String snapshotId,
  8. required List<TrackModel> tracks,
})

Implementation

PlaylistModel({
  required this.id,
  required this.name,
  required this.collaborative,
  required this.images,
  required this.owner,
  required this.public,
  required this.snapshotId,
  required this.tracks,
});