ServiceIdentity.fromJson constructor
ServiceIdentity.fromJson(
- Map _json
Implementation
ServiceIdentity.fromJson(core.Map _json)
: this(
email:
_json.containsKey('email') ? _json['email'] as core.String : null,
);