fromMap static method
override
Construct from Map.
Implementation
static ChatEventLocationChanged? 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 old_location = ChatLocation.fromMap(_map['old_location']);
var new_location = ChatLocation.fromMap(_map['new_location']);
return ChatEventLocationChanged(
extra: extra,
clientId: clientId,
old_location: old_location,
new_location: new_location,
);
}