fromJson static method
Implementation
static DeepLinkInfo? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return DeepLinkInfo(
text: FormattedText.fromJson(tdMapFromJson(json['text'])),
needUpdateApplication:
(json['need_update_application'] as bool?) ?? false,
);
}