copyWith method
WebApiModulesSettingsInventorySettingsInventoryRankInventoryRank
copyWith({
- String? inventoryRankId,
- String? inventoryTypeId,
- String? inventoryType,
- String? warehouseId,
- String? warehouseCode,
- String? warehouse,
- String? type,
- String? typeDisplay,
- double? aFromValue,
- double? aToValue,
- double? bFromValue,
- double? bToValue,
- double? cFromValue,
- double? cToValue,
- double? dFromValue,
- double? dToValue,
- double? eFromValue,
- double? eToValue,
- double? fFromValue,
- double? fToValue,
- double? gFromValue,
- double? gToValue,
- String? rankUpdated,
- String? usersId,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes,
Implementation
WebApiModulesSettingsInventorySettingsInventoryRankInventoryRank copyWith(
{String? inventoryRankId,
String? inventoryTypeId,
String? inventoryType,
String? warehouseId,
String? warehouseCode,
String? warehouse,
String? type,
String? typeDisplay,
double? aFromValue,
double? aToValue,
double? bFromValue,
double? bToValue,
double? cFromValue,
double? cToValue,
double? dFromValue,
double? dToValue,
double? eFromValue,
double? eToValue,
double? fFromValue,
double? fToValue,
double? gFromValue,
double? gToValue,
String? rankUpdated,
String? usersId,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes}) {
return WebApiModulesSettingsInventorySettingsInventoryRankInventoryRank(
inventoryRankId: inventoryRankId ?? this.inventoryRankId,
inventoryTypeId: inventoryTypeId ?? this.inventoryTypeId,
inventoryType: inventoryType ?? this.inventoryType,
warehouseId: warehouseId ?? this.warehouseId,
warehouseCode: warehouseCode ?? this.warehouseCode,
warehouse: warehouse ?? this.warehouse,
type: type ?? this.type,
typeDisplay: typeDisplay ?? this.typeDisplay,
aFromValue: aFromValue ?? this.aFromValue,
aToValue: aToValue ?? this.aToValue,
bFromValue: bFromValue ?? this.bFromValue,
bToValue: bToValue ?? this.bToValue,
cFromValue: cFromValue ?? this.cFromValue,
cToValue: cToValue ?? this.cToValue,
dFromValue: dFromValue ?? this.dFromValue,
dToValue: dToValue ?? this.dToValue,
eFromValue: eFromValue ?? this.eFromValue,
eToValue: eToValue ?? this.eToValue,
fFromValue: fFromValue ?? this.fFromValue,
fToValue: fToValue ?? this.fToValue,
gFromValue: gFromValue ?? this.gFromValue,
gToValue: gToValue ?? this.gToValue,
rankUpdated: rankUpdated ?? this.rankUpdated,
usersId: usersId ?? this.usersId,
dateStamp: dateStamp ?? this.dateStamp,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes);
}