UserExternalId.fromJson constructor
- Map _json
Implementation
UserExternalId.fromJson(core.Map _json) {
if (_json.containsKey("customType")) {
customType = _json["customType"];
}
if (_json.containsKey("type")) {
type = _json["type"];
}
if (_json.containsKey("value")) {
value = _json["value"];
}
}