BotMenuButton.fromJson constructor
Parse from a json
Implementation
factory BotMenuButton.fromJson(Map<String, dynamic> json) => BotMenuButton(
text: json['text'],
url: json['url'],
extra: json['@extra'],
clientId: json['@client_id'],
);