DeepLinkInfo.fromJson constructor

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

Parse from a json

Implementation

factory DeepLinkInfo.fromJson(Map<String, dynamic> json) => DeepLinkInfo(
  text: FormattedText.fromJson(json['text']),
  needUpdateApplication: json['need_update_application'],
  extra: json['@extra'],
  clientId: json['@client_id'],
);