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