copyWithWrapped method

Implementation

WebApiModulesAccountServicesAccountForgotPasswordRequest copyWithWrapped({
  Wrapped<String?>? email,
}) {
  return WebApiModulesAccountServicesAccountForgotPasswordRequest(
    email: (email != null ? email.value : this.email),
  );
}