fromMap static method
override
Construct from Map.
Implementation
static GetInternalLink? 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 type = InternalLinkType.fromMap(_map['type'])!;
var is_http = _map['is_http']! as bool;
return GetInternalLink(
extra: extra,
clientId: clientId,
type: type,
is_http: is_http,
);
}