copyWith method
Implementation
ShareUsersWithBot copyWith({
KeyboardButtonSource? source,
int? buttonId,
List<int>? sharedUserIds,
bool? onlyCheck,
}) => ShareUsersWithBot(
source: source ?? this.source,
buttonId: buttonId ?? this.buttonId,
sharedUserIds: sharedUserIds ?? this.sharedUserIds,
onlyCheck: onlyCheck ?? this.onlyCheck,
);