CompanyTypeChannelChannel constructor

CompanyTypeChannelChannel({
  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 CompanyTypeChannelChannel instance.

Implementation

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