NIMChatroomMemberInAttachment constructor

NIMChatroomMemberInAttachment({
  1. bool muted = false,
  2. bool tempMuted = false,
  3. int tempMutedDuration = 0,
  4. List<String>? targets,
  5. List<String>? targetNicks,
  6. String? operator,
  7. String? operatorNick,
  8. Map<String, dynamic>? extension,
})

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,
      );