copyWith method

RemoveBusinessConnectedBotFromChat copyWith({
  1. int? chatId,
})

Copy model with modified properties.

Properties:

  • chat_id: Chat identifier

Implementation

RemoveBusinessConnectedBotFromChat copyWith({
  int? chatId,
}) =>
    RemoveBusinessConnectedBotFromChat(
      chatId: chatId ?? this.chatId,
    );