copyWith method
Implementation
BotMenuButton copyWith({
String? text,
String? url,
dynamic extra,
int? clientId,
}) =>
BotMenuButton(
text: text ?? this.text,
url: url ?? this.url,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);