copyWith method

Implementation

WebApiModulesIntegrationsStorefrontContactRegistrationResponse copyWith({
  bool? success,
}) {
  return WebApiModulesIntegrationsStorefrontContactRegistrationResponse(
    success: success ?? this.success,
  );
}