PlaylistIndexResponse constructor

PlaylistIndexResponse({
  1. int? playListId,
  2. String? userId,
  3. String? userName,
  4. String? name,
  5. int? count,
  6. TimeOfDay? timeOfDay,
  7. String? duration,
  8. DateTime? createDate,
  9. List<String>? companyTypePlaylists = const [],
  10. List<String>? genrePlaylists = const [],
})

Returns a new PlaylistIndexResponse instance.

Implementation

PlaylistIndexResponse({
  this.playListId,
  this.userId,
  this.userName,
  this.name,
  this.count,
  this.timeOfDay,
  this.duration,
  this.createDate,
  this.companyTypePlaylists = const [],
  this.genrePlaylists = const [],
});