BaseChannel constructor

BaseChannel({
  1. int? id,
  2. String? name,
  3. String? code,
  4. String? type,
  5. SettingsSample? settingsSample,
  6. List? authSample,
  7. String? description,
})

Implementation

BaseChannel({
  this.id,
  this.name,
  this.code,
  this.type,
  this.logo,
  this.settingsSample,
  this.authSample,
  this.description,
});