PlaylistItemModel constructor

PlaylistItemModel({
  1. int? id,
  2. String? label,
  3. String? value,
  4. int? duration,
  5. int? itemOrder,
  6. int? playlistId,
  7. int? audio,
  8. ContentType? contentType,
})

Implementation

PlaylistItemModel(
    {this.id,
    this.label,
    this.value,
    this.duration,
    this.itemOrder,
    this.playlistId,
    this.audio,
    this.contentType});