NIMChatroomNotificationAttachment constructor

NIMChatroomNotificationAttachment({
  1. required int type,
  2. List<String>? targets,
  3. List<String>? targetNicks,
  4. String? operator,
  5. String? operatorNick,
  6. Map<String, dynamic>? extension,
})

Implementation

NIMChatroomNotificationAttachment({
  required this.type,
  this.targets,
  this.targetNicks,
  this.operator,
  this.operatorNick,
  this.extension,
});