copyWith method
WebApiModulesAccountServicesAccountSystemSettingsResponse
copyWith({
- String? defaultUnitId,
- String? defaultRank,
- bool? userAssignedICodes,
- bool? quikScanStageBySession,
- FwStandardSqlServerFwJsonDataTable? barcodeSkipPrefixes,
- bool? enableOriginalShow,
- bool? enablePropsWardrobe,
- bool? enableSetsWalls,
- bool? isStorefrontHosted,
- bool? isStorefrontApiEnabled,
- bool? isUniversity,
- DateTime? systemUTCDateTime,
Implementation
WebApiModulesAccountServicesAccountSystemSettingsResponse copyWith({
String? defaultUnitId,
String? defaultRank,
bool? userAssignedICodes,
bool? quikScanStageBySession,
FwStandardSqlServerFwJsonDataTable? barcodeSkipPrefixes,
bool? enableOriginalShow,
bool? enablePropsWardrobe,
bool? enableSetsWalls,
bool? isStorefrontHosted,
bool? isStorefrontApiEnabled,
bool? isUniversity,
DateTime? systemUTCDateTime,
}) {
return WebApiModulesAccountServicesAccountSystemSettingsResponse(
defaultUnitId: defaultUnitId ?? this.defaultUnitId,
defaultRank: defaultRank ?? this.defaultRank,
userAssignedICodes: userAssignedICodes ?? this.userAssignedICodes,
quikScanStageBySession:
quikScanStageBySession ?? this.quikScanStageBySession,
barcodeSkipPrefixes: barcodeSkipPrefixes ?? this.barcodeSkipPrefixes,
enableOriginalShow: enableOriginalShow ?? this.enableOriginalShow,
enablePropsWardrobe: enablePropsWardrobe ?? this.enablePropsWardrobe,
enableSetsWalls: enableSetsWalls ?? this.enableSetsWalls,
isStorefrontHosted: isStorefrontHosted ?? this.isStorefrontHosted,
isStorefrontApiEnabled:
isStorefrontApiEnabled ?? this.isStorefrontApiEnabled,
isUniversity: isUniversity ?? this.isUniversity,
systemUTCDateTime: systemUTCDateTime ?? this.systemUTCDateTime,
);
}