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