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