fromMap static method
override
Construct from Map.
Implementation
static UserStatusOffline? 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 was_online = _map['was_online']! as int;
return UserStatusOffline(
extra: extra,
clientId: clientId,
was_online: was_online,
);
}