fromMap static method
override
Construct from Map.
Implementation
static Game? 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 int64;
var short_name = _map['short_name']! as String;
var title = _map['title']! as String;
var text = FormattedText.fromMap(_map['text'])!;
var description = _map['description']! as String;
var photo = Photo.fromMap(_map['photo'])!;
var animation = Animation.fromMap(_map['animation']);
return Game(
extra: extra,
clientId: clientId,
id: id,
short_name: short_name,
title: title,
text: text,
description: description,
photo: photo,
animation: animation,
);
}