NIMChatroomTempMuteAttachment constructor

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

Implementation

NIMChatroomTempMuteAttachment({
  required int type,
  this.duration = 0,
  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,
      );