GoogleFirebaseAppcheckV1betaExchangeAppAttestAttestationRequest.fromJson constructor

GoogleFirebaseAppcheckV1betaExchangeAppAttestAttestationRequest.fromJson(
  1. Map _json
)

Implementation

GoogleFirebaseAppcheckV1betaExchangeAppAttestAttestationRequest.fromJson(
    core.Map _json)
    : this(
        attestationStatement: _json.containsKey('attestationStatement')
            ? _json['attestationStatement'] as core.String
            : null,
        challenge: _json.containsKey('challenge')
            ? _json['challenge'] as core.String
            : null,
        keyId:
            _json.containsKey('keyId') ? _json['keyId'] as core.String : null,
      );