copyWith method

ToggleBusinessConnectedBotChatIsPaused copyWith({
  1. int? chatId,
  2. bool? isPaused,
})

Implementation

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