MediaData constructor

const MediaData({
  1. required String? remoteReference,
  2. required int id,
  3. required int gid,
  4. required String? hash,
  5. required String? title,
  6. required String? subtitle,
  7. required int channel,
  8. required int studio,
  9. required String? thumb,
  10. required String? streamtype,
  11. required int licenseBy,
  12. required int originalDomain,
  13. required int format,
  14. required bool isUGC,
  15. required int releaseDate,
  16. required String? remoteProvider,
  17. required bool isForKids,
  18. required bool isPanorama,
  19. required bool isHDR,
  20. required bool isPay,
  21. required bool isPicked,
  22. required Map? customAttributes,
})

Implementation

const MediaData({
  required this.remoteReference,
  required this.id,
  required this.gid,
  required this.hash,
  required this.title,
  required this.subtitle,
  required this.channel,
  required this.studio,
  required this.thumb,
  required this.streamtype,
  required this.licenseBy,
  required this.originalDomain,
  required this.format,
  required this.isUGC,
  required this.releaseDate,
  required this.remoteProvider,
  required this.isForKids,
  required this.isPanorama,
  required this.isHDR,
  required this.isPay,
  required this.isPicked,
  required this.customAttributes,
});