copyWith method

ShareChatWithBot copyWith({
  1. int? chatId,
  2. int? messageId,
  3. int? buttonId,
  4. int? sharedChatId,
  5. bool? onlyCheck,
})

Implementation

ShareChatWithBot copyWith({
  int? chatId,
  int? messageId,
  int? buttonId,
  int? sharedChatId,
  bool? onlyCheck,
}) =>
    ShareChatWithBot(
      chatId: chatId ?? this.chatId,
      messageId: messageId ?? this.messageId,
      buttonId: buttonId ?? this.buttonId,
      sharedChatId: sharedChatId ?? this.sharedChatId,
      onlyCheck: onlyCheck ?? this.onlyCheck,
    );