GoogleFirebaseAppcheckV1betaAppAttestChallengeResponse.fromJson constructor

GoogleFirebaseAppcheckV1betaAppAttestChallengeResponse.fromJson(
  1. Map _json
)

Implementation

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