fromMap static method
override
Construct from Map.
Implementation
static JsonObjectMember? 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 key = _map['key']! as String;
var value = JsonValue.fromMap(_map['value'])!;
return JsonObjectMember(
extra: extra,
clientId: clientId,
key: key,
value: value,
);
}