copyWithWrapped method

WebApiModulesWarehouseCheckInUpdateNotesRequest copyWithWrapped({
  1. Wrapped<String?>? notes,
  2. Wrapped<String?>? contractId,
})

Implementation

WebApiModulesWarehouseCheckInUpdateNotesRequest copyWithWrapped({
  Wrapped<String?>? notes,
  Wrapped<String?>? contractId,
}) {
  return WebApiModulesWarehouseCheckInUpdateNotesRequest(
    notes: (notes != null ? notes.value : this.notes),
    contractId: (contractId != null ? contractId.value : this.contractId),
  );
}