copyWithWrapped method
Implementation
WebApiModulesPluginsFreightPopFreightPopPluginLocation copyWithWrapped({
Wrapped<String?>? locationId,
Wrapped<String?>? location,
}) {
return WebApiModulesPluginsFreightPopFreightPopPluginLocation(
locationId: (locationId != null ? locationId.value : this.locationId),
location: (location != null ? location.value : this.location),
);
}