copyWithWrapped method
Implementation
WebApiModulesInventoryRentalInventoryAddRemoveWallResponse copyWithWrapped(
{Wrapped<bool?>? isQuantity,
Wrapped<int?>? status,
Wrapped<String?>? message}) {
return WebApiModulesInventoryRentalInventoryAddRemoveWallResponse(
isQuantity: (isQuantity != null ? isQuantity.value : this.isQuantity),
status: (status != null ? status.value : this.status),
message: (message != null ? message.value : this.message));
}