fromMap static method
override
Construct from Map.
Implementation
static MessageVideo? 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 video = Video.fromMap(_map['video'])!;
var caption = FormattedText.fromMap(_map['caption'])!;
var has_spoiler = _map['has_spoiler']! as bool;
var is_secret = _map['is_secret']! as bool;
return MessageVideo(
extra: extra,
clientId: clientId,
video: video,
caption: caption,
has_spoiler: has_spoiler,
is_secret: is_secret,
);
}