copyWith method

UpdateChatDefaultDisableNotification copyWith({
  1. int? chatId,
  2. bool? defaultDisableNotification,
})

Implementation

UpdateChatDefaultDisableNotification copyWith({
  int? chatId,
  bool? defaultDisableNotification,
}) => UpdateChatDefaultDisableNotification(
  chatId: chatId ?? this.chatId,
  defaultDisableNotification:
      defaultDisableNotification ?? this.defaultDisableNotification,
);