InternalLinkTypeWebApp.fromJson constructor

InternalLinkTypeWebApp.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory InternalLinkTypeWebApp.fromJson(Map<String, dynamic> json) =>
    InternalLinkTypeWebApp(
      botUsername: json['bot_username'],
      webAppShortName: json['web_app_short_name'],
      startParameter: json['start_parameter'],
      extra: json['@extra'],
      clientId: json['@client_id'],
    );