WebAppInfo.fromJson constructor

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

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'],
    );