copyWithWrapped method

Implementation

WebApiModulesAgentPurchaseOrderPurchaseOrderReceiveBarCodeAddItemsResponse
    copyWithWrapped(
        {Wrapped<int?>? itemsAdded,
        Wrapped<int?>? status,
        Wrapped<bool?>? success,
        Wrapped<String?>? msg}) {
  return WebApiModulesAgentPurchaseOrderPurchaseOrderReceiveBarCodeAddItemsResponse(
      itemsAdded: (itemsAdded != null ? itemsAdded.value : this.itemsAdded),
      status: (status != null ? status.value : this.status),
      success: (success != null ? success.value : this.success),
      msg: (msg != null ? msg.value : this.msg));
}