Channel constructor

Channel({
  1. int? channelId,
  2. required String name,
  3. required String radioPoint,
  4. String? image,
  5. DateTime? createDate,
  6. DateTime? changeDate,
  7. List<CompanyTypeChannel>? companyTypeChannels = const [],
})

Returns a new Channel instance.

Implementation

Channel({
  this.channelId,
  required this.name,
  required this.radioPoint,
  this.image,
  this.createDate,
  this.changeDate,
  this.companyTypeChannels = const [],
});