InternalLinkTypeAttachmentMenuBot.fromJson constructor
Parse from a json
Implementation
factory InternalLinkTypeAttachmentMenuBot.fromJson(
Map<String, dynamic> json) =>
InternalLinkTypeAttachmentMenuBot(
targetChat: TargetChat.fromJson(json['target_chat']),
botUsername: json['bot_username'],
url: json['url'],
extra: json['@extra'],
clientId: json['@client_id'],
);