Channel constructor

Channel({
  1. required String channelId,
  2. required String? name,
  3. required String? description,
  4. required String? location,
  5. required String? channelType,
  6. required String? transmitterId,
  7. required String favourite,
  8. required String online,
  9. required String? video1,
  10. required String? video1Head,
  11. required String? video2,
  12. required String? video2Head,
  13. required String? audio,
  14. required String? usb,
  15. required String? usb1,
  16. required String? serial,
  17. required String? audio1,
  18. required String? audio2,
  19. required String sensitive,
  20. required String? viewButton,
  21. required String? sharedButton,
  22. required String? controlButton,
  23. required String? exclusiveButton,
})

Implementation

Channel({
  required this.channelId,
  required this.name,
  required this.description,
  required this.location,
  required this.channelType,
  required this.transmitterId,
  required this.favourite,
  required this.online,
  required this.video1,
  required this.video1Head,
  required this.video2,
  required this.video2Head,
  required this.audio,
  required this.usb,
  required this.usb1,
  required this.serial,
  required this.audio1,
  required this.audio2,
  required this.sensitive,
  required this.viewButton,
  required this.sharedButton,
  required this.controlButton,
  required this.exclusiveButton,
});