fromMap static method
override
Construct from Map.
Implementation
static ChatPhotos? 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 total_count = _map['total_count']! as int;
var photos = List<ChatPhoto>.from(
(_map["photos"] ?? []).map(
(e) => ChatPhoto.fromMap(e),
),
);
return ChatPhotos(
extra: extra,
clientId: clientId,
total_count: total_count,
photos: photos,
);
}