fromMap static method

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

Construct from Map.

Implementation

static UpdateRecentStickers? 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 is_attached = _map['is_attached']! as bool;
  var sticker_ids = List<int>.from(
    (_map["sticker_ids"] ?? []).map(
      (e) => e as int,
    ),
  );
  return UpdateRecentStickers(
    extra: extra,
    clientId: clientId,
    is_attached: is_attached,
    sticker_ids: sticker_ids,
  );
}