NIMTeamMember constructor

NIMTeamMember({
  1. required String teamId,
  2. required NIMTeamType teamType,
  3. required String accountId,
  4. required NIMTeamMemberRole memberRole,
  5. String? teamNick,
  6. String? serverExtension,
  7. required int joinTime,
  8. int? updateTime,
  9. required bool inTeam,
  10. bool? chatBanned,
  11. String? invitorAccountId,
  12. List<String>? followAccountIds,
})

构造函数

Implementation

NIMTeamMember({
  required this.teamId,
  required this.teamType,
  required this.accountId,
  required this.memberRole,
  this.teamNick,
  this.serverExtension,
  required this.joinTime,
  this.updateTime,
  required this.inTeam,
  this.chatBanned,
  this.invitorAccountId,
  this.followAccountIds,
});