MmChannelMemberWithTeamData constructor

MmChannelMemberWithTeamData({
  1. String? channelId,
  2. String? userId,
  3. String? roles,
  4. int? lastViewedAt,
  5. int? msgCount,
  6. int? mentionCount,
  7. MmChannelNotifyProps? notifyProps,
  8. int? lastUpdateAt,
  9. String? teamDisplayName,
  10. String? teamName,
  11. int? teamUpdateAt,
})

Returns a new MmChannelMemberWithTeamData instance.

Implementation

MmChannelMemberWithTeamData({
  this.channelId,
  this.userId,
  this.roles,
  this.lastViewedAt,
  this.msgCount,
  this.mentionCount,
  this.notifyProps,
  this.lastUpdateAt,
  this.teamDisplayName,
  this.teamName,
  this.teamUpdateAt,
});