ChannelsCreateChannel constructor

const ChannelsCreateChannel({
  1. required bool broadcast,
  2. required bool megagroup,
  3. required bool forImport,
  4. required bool forum,
  5. required String title,
  6. required String about,
  7. InputGeoPointBase? geoPoint,
  8. String? address,
  9. int? ttlPeriod,
})

Channels Create Channel constructor.

Implementation

const ChannelsCreateChannel({
  required this.broadcast,
  required this.megagroup,
  required this.forImport,
  required this.forum,
  required this.title,
  required this.about,
  this.geoPoint,
  this.address,
  this.ttlPeriod,
}) : super._();