Channel constructor

Channel({
  1. String? arn,
  2. DateTime? creationTime,
  3. DateTime? lastMessageArrivalTime,
  4. DateTime? lastUpdateTime,
  5. String? name,
  6. RetentionPeriod? retentionPeriod,
  7. ChannelStatus? status,
  8. ChannelStorage? storage,
})

Implementation

Channel({
  this.arn,
  this.creationTime,
  this.lastMessageArrivalTime,
  this.lastUpdateTime,
  this.name,
  this.retentionPeriod,
  this.status,
  this.storage,
});