fromMap static method

InlineQueryResultVideo? fromMap(
  1. Map<String, dynamic>? _map
)
override

Construct from Map.

Implementation

static InlineQueryResultVideo? fromMap(Map<String, dynamic>? _map) {
  if (_map == null) return null;
  var _ = _map["@type"];
  if (_ != CONSTRUCTOR) return null;
  var extra = _map['@extra'];
  var clientId = _map['@clientId'];
  var id = _map['id']! as String;
  var video = Video.fromMap(_map['video'])!;
  var title = _map['title']! as String;
  var description = _map['description']! as String;
  return InlineQueryResultVideo(
    extra: extra,
    clientId: clientId,
    id: id,
    video: video,
    title: title,
    description: description,
  );
}