copyWith method
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,
);