MmSharedChannel constructor

MmSharedChannel({
  1. String? id,
  2. String? teamId,
  3. bool? home,
  4. bool? readonly,
  5. String? name,
  6. String? displayName,
  7. String? purpose,
  8. String? header,
  9. String? creatorId,
  10. int? createAt,
  11. int? updateAt,
  12. String? remoteId,
})

Returns a new MmSharedChannel instance.

Implementation

MmSharedChannel({
  this.id,
  this.teamId,
  this.home,
  this.readonly,
  this.name,
  this.displayName,
  this.purpose,
  this.header,
  this.creatorId,
  this.createAt,
  this.updateAt,
  this.remoteId,
});