copyWith method
Implementation
RecaptchaRequiredError copyWith(
{String? errorType,
String? errorCode,
String? displayMessage,
String? httpCode,
String? linkUserExperience,
String? commonCauses,
String? troubleshootingSteps}) {
return RecaptchaRequiredError(
errorType: errorType ?? this.errorType,
errorCode: errorCode ?? this.errorCode,
displayMessage: displayMessage ?? this.displayMessage,
httpCode: httpCode ?? this.httpCode,
linkUserExperience: linkUserExperience ?? this.linkUserExperience,
commonCauses: commonCauses ?? this.commonCauses,
troubleshootingSteps:
troubleshootingSteps ?? this.troubleshootingSteps);
}