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,
);