ChannelSummary constructor

ChannelSummary({
  1. String? channelName,
  2. ChannelStorageSummary? channelStorage,
  3. DateTime? creationTime,
  4. DateTime? lastMessageArrivalTime,
  5. DateTime? lastUpdateTime,
  6. ChannelStatus? status,
})

Implementation

ChannelSummary({
  this.channelName,
  this.channelStorage,
  this.creationTime,
  this.lastMessageArrivalTime,
  this.lastUpdateTime,
  this.status,
});