InlineQueryResultVideo.fromJson constructor

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

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'],
);