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