GenerateServiceIdentityResponse.fromJson constructor

GenerateServiceIdentityResponse.fromJson(
  1. 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,
      );