copyWith method
Implementation
ShareChatWithBot copyWith({
KeyboardButtonSource? source,
int? buttonId,
int? sharedChatId,
bool? onlyCheck,
}) => ShareChatWithBot(
source: source ?? this.source,
buttonId: buttonId ?? this.buttonId,
sharedChatId: sharedChatId ?? this.sharedChatId,
onlyCheck: onlyCheck ?? this.onlyCheck,
);