GoogleFirebaseAppcheckV1GeneratePlayIntegrityChallengeResponse.fromJson constructor

GoogleFirebaseAppcheckV1GeneratePlayIntegrityChallengeResponse.fromJson(
  1. Map json_
)

Implementation

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