copyWithWrapped method

WebApiModulesAdministratorQuikScanSetupQuikScanSettings copyWithWrapped({
  1. Wrapped<bool?>? closeStatusPopupAfterScanningCheckOut,
  2. Wrapped<int?>? closeStatuPopupAfterSecondsCheckOut,
  3. Wrapped<bool?>? closeStatusPopupAfterScanningCheckIn,
  4. Wrapped<int?>? closeStatuPopupAfterSecondsCheckIn,
  5. Wrapped<bool?>? enableAisleShelfAssignmentMode,
})

Implementation

WebApiModulesAdministratorQuikScanSetupQuikScanSettings copyWithWrapped({
  Wrapped<bool?>? closeStatusPopupAfterScanningCheckOut,
  Wrapped<int?>? closeStatuPopupAfterSecondsCheckOut,
  Wrapped<bool?>? closeStatusPopupAfterScanningCheckIn,
  Wrapped<int?>? closeStatuPopupAfterSecondsCheckIn,
  Wrapped<bool?>? enableAisleShelfAssignmentMode,
}) {
  return WebApiModulesAdministratorQuikScanSetupQuikScanSettings(
    closeStatusPopupAfterScanningCheckOut:
        (closeStatusPopupAfterScanningCheckOut != null
        ? closeStatusPopupAfterScanningCheckOut.value
        : this.closeStatusPopupAfterScanningCheckOut),
    closeStatuPopupAfterSecondsCheckOut:
        (closeStatuPopupAfterSecondsCheckOut != null
        ? closeStatuPopupAfterSecondsCheckOut.value
        : this.closeStatuPopupAfterSecondsCheckOut),
    closeStatusPopupAfterScanningCheckIn:
        (closeStatusPopupAfterScanningCheckIn != null
        ? closeStatusPopupAfterScanningCheckIn.value
        : this.closeStatusPopupAfterScanningCheckIn),
    closeStatuPopupAfterSecondsCheckIn:
        (closeStatuPopupAfterSecondsCheckIn != null
        ? closeStatuPopupAfterSecondsCheckIn.value
        : this.closeStatuPopupAfterSecondsCheckIn),
    enableAisleShelfAssignmentMode: (enableAisleShelfAssignmentMode != null
        ? enableAisleShelfAssignmentMode.value
        : this.enableAisleShelfAssignmentMode),
  );
}