GoogleFirebaseAppcheckV1RecaptchaV3Config.fromJson constructor

GoogleFirebaseAppcheckV1RecaptchaV3Config.fromJson(
  1. Map json_
)

Implementation

GoogleFirebaseAppcheckV1RecaptchaV3Config.fromJson(core.Map json_)
    : this(
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        siteSecret: json_.containsKey('siteSecret')
            ? json_['siteSecret'] as core.String
            : null,
        siteSecretSet: json_.containsKey('siteSecretSet')
            ? json_['siteSecretSet'] as core.bool
            : null,
        tokenTtl: json_.containsKey('tokenTtl')
            ? json_['tokenTtl'] as core.String
            : null,
      );