copyWith method

WebApiModulesSettingsInventorySettingsInventoryRankInventoryRank copyWith({
  1. String? inventoryRankId,
  2. String? inventoryTypeId,
  3. String? inventoryType,
  4. String? warehouseId,
  5. String? warehouseCode,
  6. String? warehouse,
  7. String? type,
  8. String? typeDisplay,
  9. double? aFromValue,
  10. double? aToValue,
  11. double? bFromValue,
  12. double? bToValue,
  13. double? cFromValue,
  14. double? cToValue,
  15. double? dFromValue,
  16. double? dToValue,
  17. double? eFromValue,
  18. double? eToValue,
  19. double? fFromValue,
  20. double? fToValue,
  21. double? gFromValue,
  22. double? gToValue,
  23. String? rankUpdated,
  24. String? usersId,
  25. String? dateStamp,
  26. String? auditNote,
  27. String? recordTitle,
  28. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  29. List<FwStandardDataFwCustomValue>? custom,
  30. 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);
}