copyWithWrapped method

WebApiModulesInventoryRentalInventoryAddRemoveWallResponse copyWithWrapped({
  1. Wrapped<bool?>? isQuantity,
  2. Wrapped<int?>? status,
  3. Wrapped<String?>? message,
})

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));
}