NIMChatroomMemberInAttachment constructor Null safety
Implementation
NIMChatroomMemberInAttachment({
this.muted = false,
this.tempMuted = false,
this.tempMutedDuration = 0,
List<String>? targets,
List<String>? targetNicks,
String? operator,
String? operatorNick,
Map<String, dynamic>? extension,
}) : super(
type: NIMChatroomNotificationTypes.chatRoomMemberIn,
targets: targets,
targetNicks: targetNicks,
operator: operator,
operatorNick: operatorNick,
extension: extension,
);