copyWith method

WebApiModulesInventoryPhysicalInventoryPhysicalInventoryExceptions copyWith({
  1. String? physicalInventoryId,
  2. String? scannedCode,
  3. String? iCode,
  4. String? description,
  5. String? exception,
  6. String? inventoryId,
  7. String? userName,
  8. String? date,
  9. String? time,
  10. String? auditNote,
  11. String? recordTitle,
  12. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  13. List<FwStandardDataFwCustomValue>? custom,
  14. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  15. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesInventoryPhysicalInventoryPhysicalInventoryExceptions copyWith(
    {String? physicalInventoryId,
    String? scannedCode,
    String? iCode,
    String? description,
    String? exception,
    String? inventoryId,
    String? userName,
    String? date,
    String? time,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesInventoryPhysicalInventoryPhysicalInventoryExceptions(
      physicalInventoryId: physicalInventoryId ?? this.physicalInventoryId,
      scannedCode: scannedCode ?? this.scannedCode,
      iCode: iCode ?? this.iCode,
      description: description ?? this.description,
      exception: exception ?? this.exception,
      inventoryId: inventoryId ?? this.inventoryId,
      userName: userName ?? this.userName,
      date: date ?? this.date,
      time: time ?? this.time,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes,
      translation: translation ?? this.translation);
}