copyWith method
Implementation
ShareUserWithBot copyWith({
int? chatId,
int? messageId,
int? buttonId,
int? sharedUserId,
bool? onlyCheck,
}) =>
ShareUserWithBot(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
buttonId: buttonId ?? this.buttonId,
sharedUserId: sharedUserId ?? this.sharedUserId,
onlyCheck: onlyCheck ?? this.onlyCheck,
);