MmChannelMember constructor

MmChannelMember({
  1. String? channelId,
  2. String? userId,
  3. String? roles,
  4. int? lastViewedAt,
  5. int? msgCount,
  6. int? mentionCount,
  7. MmChannelNotifyProps? notifyProps,
  8. int? lastUpdateAt,
})

Returns a new MmChannelMember instance.

Implementation

MmChannelMember({
  this.channelId,
  this.userId,
  this.roles,
  this.lastViewedAt,
  this.msgCount,
  this.mentionCount,
  this.notifyProps,
  this.lastUpdateAt,
});