copyWith method
Implementation
KeyboardButtonTypeRequestManagedBot copyWith({
int? id,
String? suggestedName,
String? suggestedUsername,
}) => KeyboardButtonTypeRequestManagedBot(
id: id ?? this.id,
suggestedName: suggestedName ?? this.suggestedName,
suggestedUsername: suggestedUsername ?? this.suggestedUsername,
);