toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final recaptchaEnforcementState = this.recaptchaEnforcementState;
  final recaptchaKey = this.recaptchaKey;
  final useSmsBotScore = this.useSmsBotScore;
  final useSmsTollFraudProtection = this.useSmsTollFraudProtection;
  return {
    'recaptchaEnforcementState': ?recaptchaEnforcementState,
    'recaptchaKey': ?recaptchaKey,
    'useSmsBotScore': ?useSmsBotScore,
    'useSmsTollFraudProtection': ?useSmsTollFraudProtection,
  };
}