NIMSuperTeamMember constructor

NIMSuperTeamMember({
  1. String? id,
  2. String? account,
  3. TeamMemberType? type,
  4. String? teamNick,
  5. required bool isInTeam,
  6. Map<String, dynamic>? extension,
  7. required bool isMute,
  8. required int joinTime,
  9. String? invitorAccid,
})

Implementation

NIMSuperTeamMember(
    {this.id,
    this.account,
    this.type,
    this.teamNick,
    required this.isInTeam,
    this.extension,
    required this.isMute,
    required this.joinTime,
    this.invitorAccid});