SecurityPolicyRecaptchaOptionsConfig.fromJson constructor

SecurityPolicyRecaptchaOptionsConfig.fromJson(
  1. Map json_
)

Implementation

SecurityPolicyRecaptchaOptionsConfig.fromJson(core.Map json_)
    : this(
        redirectSiteKey: json_.containsKey('redirectSiteKey')
            ? json_['redirectSiteKey'] as core.String
            : null,
      );