MediaParentData constructor

const MediaParentData({
  1. required int id,
  2. required int gid,
  3. required String? hash,
  4. required String? title,
  5. required String? subtitle,
  6. required String? thumb,
  7. required String? streamtype,
  8. required int originalDomain,
  9. required int releaseDate,
  10. required int licenseBy,
  11. required int channel,
  12. required int format,
  13. required Map? customAttributes,
})

Implementation

const MediaParentData({
  required this.id,
  required this.gid,
  required this.hash,
  required this.title,
  required this.subtitle,
  required this.thumb,
  required this.streamtype,
  required this.originalDomain,
  required this.releaseDate,
  required this.licenseBy,
  required this.channel,
  required this.format,
  required this.customAttributes,
});