copyWith method

WebApiModulesAdministratorQuikScanSetupQuikScanSettings copyWith({
  1. bool? closeStatusPopupAfterScanningCheckOut,
  2. int? closeStatuPopupAfterSecondsCheckOut,
  3. bool? closeStatusPopupAfterScanningCheckIn,
  4. int? closeStatuPopupAfterSecondsCheckIn,
})

Implementation

WebApiModulesAdministratorQuikScanSetupQuikScanSettings copyWith({
  bool? closeStatusPopupAfterScanningCheckOut,
  int? closeStatuPopupAfterSecondsCheckOut,
  bool? closeStatusPopupAfterScanningCheckIn,
  int? closeStatuPopupAfterSecondsCheckIn,
}) {
  return WebApiModulesAdministratorQuikScanSetupQuikScanSettings(
    closeStatusPopupAfterScanningCheckOut:
        closeStatusPopupAfterScanningCheckOut ??
        this.closeStatusPopupAfterScanningCheckOut,
    closeStatuPopupAfterSecondsCheckOut:
        closeStatuPopupAfterSecondsCheckOut ??
        this.closeStatuPopupAfterSecondsCheckOut,
    closeStatusPopupAfterScanningCheckIn:
        closeStatusPopupAfterScanningCheckIn ??
        this.closeStatusPopupAfterScanningCheckIn,
    closeStatuPopupAfterSecondsCheckIn:
        closeStatuPopupAfterSecondsCheckIn ??
        this.closeStatuPopupAfterSecondsCheckIn,
  );
}