GenerateServiceIdentityResponse.fromJson constructor
GenerateServiceIdentityResponse.fromJson(
- Map _json
Implementation
GenerateServiceIdentityResponse.fromJson(core.Map _json)
: this(
identity: _json.containsKey('identity')
? ServiceIdentity.fromJson(
_json['identity'] as core.Map<core.String, core.dynamic>)
: null,
);