InlineQueryResultContact.fromJson constructor
Parse from a json
Implementation
factory InlineQueryResultContact.fromJson(Map<String, dynamic> json) =>
InlineQueryResultContact(
id: json['id'],
contact: Contact.fromJson(json['contact']),
thumbnail: json['thumbnail'] == null
? null
: Thumbnail.fromJson(json['thumbnail']),
);