GetRecaptchaParamResponse.fromJson constructor

GetRecaptchaParamResponse.fromJson(
  1. Map json_
)

Implementation

GetRecaptchaParamResponse.fromJson(core.Map json_)
    : this(
        kind: json_.containsKey('kind') ? json_['kind'] as core.String : null,
        recaptchaSiteKey: json_.containsKey('recaptchaSiteKey')
            ? json_['recaptchaSiteKey'] as core.String
            : null,
        recaptchaStoken: json_.containsKey('recaptchaStoken')
            ? json_['recaptchaStoken'] as core.String
            : null,
      );