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