copyWith method

UpdateApplicationRecaptchaVerificationRequired copyWith({
  1. int? verificationId,
  2. String? action,
  3. String? recaptchaKeyId,
})

Implementation

UpdateApplicationRecaptchaVerificationRequired copyWith({
  int? verificationId,
  String? action,
  String? recaptchaKeyId,
}) => UpdateApplicationRecaptchaVerificationRequired(
  verificationId: verificationId ?? this.verificationId,
  action: action ?? this.action,
  recaptchaKeyId: recaptchaKeyId ?? this.recaptchaKeyId,
);