NIMChatroomQueueChangeAttachment constructor
Null safety
NIMChatroomQueueChangeAttachment(- {required int type,
- required NIMChatroomQueueChangeType queueChangeType,
- String? content,
- String? key,
- Map<String, String>? contentMap,
- List<String>? targets,
- List<String>? targetNicks,
- String? operator,
- String? operatorNick,
- Map<String, dynamic>? extension}
)
Implementation
NIMChatroomQueueChangeAttachment({
required int type,
required this.queueChangeType,
this.content,
this.key,
this.contentMap,
List<String>? targets,
List<String>? targetNicks,
String? operator,
String? operatorNick,
Map<String, dynamic>? extension,
}) : super(
type: type,
targets: targets,
targetNicks: targetNicks,
operator: operator,
operatorNick: operatorNick,
extension: extension,
);