NIMChatroomMember(- {required String roomId,
- required String account,
- required NIMChatroomMemberType memberType,
- required String? nickname,
- String? avatar,
- Map<String, dynamic>? extension,
- bool isOnline = true,
- bool isInBlackList = false,
- bool isMuted = false,
- bool isTempMuted = false,
- int? tempMuteDuration,
- bool? isValid = true,
- int? enterTime,
- List<String>? tags,
- String? notifyTargetTags}
)
Implementation
NIMChatroomMember({
required this.roomId,
required this.account,
required this.memberType,
required this.nickname,
this.avatar,
this.extension,
this.isOnline = true,
this.isInBlackList = false,
this.isMuted = false,
this.isTempMuted = false,
this.tempMuteDuration,
this.isValid = true,
this.enterTime,
this.tags,
this.notifyTargetTags,
});