ChannelBaseInfo constructor

ChannelBaseInfo({
  1. required String? channelName,
  2. required String? channelId,
  3. ChannelType? type,
  4. String? channelExt,
  5. int? createTimestamp,
  6. int? expireTimestamp,
  7. String? creatorAccountId,
  8. ChannelStatus? channelStatus,
})

Implementation

ChannelBaseInfo(
    {required this.channelName,
    required this.channelId,
    this.type,
    this.channelExt,
    this.createTimestamp,
    this.expireTimestamp,
    this.creatorAccountId,
    this.channelStatus});