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