InlineQueryResultDocument.fromJson constructor
Parse from a json
Implementation
factory InlineQueryResultDocument.fromJson(Map<String, dynamic> json) =>
InlineQueryResultDocument(
id: json['id'],
document: Document.fromJson(json['document']),
title: json['title'],
description: json['description'],
);