fromMap static method

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

Construct from Map.

Implementation

static MessageAnimation? 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 animation = Animation.fromMap(_map['animation'])!;
  var caption = FormattedText.fromMap(_map['caption'])!;
  var has_spoiler = _map['has_spoiler']! as bool;
  var is_secret = _map['is_secret']! as bool;
  return MessageAnimation(
    extra: extra,
    clientId: clientId,
    animation: animation,
    caption: caption,
    has_spoiler: has_spoiler,
    is_secret: is_secret,
  );
}