copyWith method

WebApiModulesTransfersTransferOrderTransferOrderDocument copyWith({
  1. String? transferId,
  2. bool? copying,
  3. String? documentId,
  4. String? documentTypeId,
  5. String? uniqueId1,
  6. String? uniqueId2,
  7. int? uniqueId1Int,
  8. String? description,
  9. String? inputByUsersId,
  10. String? attachDate,
  11. String? attachTime,
  12. bool? attachToEmail,
  13. bool? inactive,
  14. String? dateStamp,
  15. String? extension,
  16. String? fileExtension,
  17. String? documentType,
  18. String? inputBy,
  19. bool? hasImage,
  20. bool? hasFile,
  21. int? imageDocumentCount,
  22. bool? fileIsModified,
  23. String? fileDataUrl,
  24. String? filePath,
  25. String? auditNote,
  26. String? recordTitle,
  27. dynamic urlIdentifier,
  28. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  29. List<FwStandardDataFwCustomValue>? custom,
  30. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  31. FwStandardBusinessLogicFwBusinessLogic? original,
  32. List<FwStandardDataFwTranslatedValue>? translation,
  33. bool? hasImport,
  34. bool? hasDocuments,
  35. String? createdByUserId,
  36. String? createdByUserName,
  37. String? createdDateTime,
  38. String? modifiedByUserId,
  39. String? modifiedByUserName,
  40. String? modifiedDateTime,
})

Implementation

WebApiModulesTransfersTransferOrderTransferOrderDocument copyWith({
  String? transferId,
  bool? copying,
  String? documentId,
  String? documentTypeId,
  String? uniqueId1,
  String? uniqueId2,
  int? uniqueId1Int,
  String? description,
  String? inputByUsersId,
  String? attachDate,
  String? attachTime,
  bool? attachToEmail,
  bool? inactive,
  String? dateStamp,
  String? extension,
  String? fileExtension,
  String? documentType,
  String? inputBy,
  bool? hasImage,
  bool? hasFile,
  int? imageDocumentCount,
  bool? fileIsModified,
  String? fileDataUrl,
  String? filePath,
  String? auditNote,
  String? recordTitle,
  dynamic urlIdentifier,
  List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  FwStandardBusinessLogicFwBusinessLogic? original,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  bool? hasDocuments,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  return WebApiModulesTransfersTransferOrderTransferOrderDocument(
    transferId: transferId ?? this.transferId,
    copying: copying ?? this.copying,
    documentId: documentId ?? this.documentId,
    documentTypeId: documentTypeId ?? this.documentTypeId,
    uniqueId1: uniqueId1 ?? this.uniqueId1,
    uniqueId2: uniqueId2 ?? this.uniqueId2,
    uniqueId1Int: uniqueId1Int ?? this.uniqueId1Int,
    description: description ?? this.description,
    inputByUsersId: inputByUsersId ?? this.inputByUsersId,
    attachDate: attachDate ?? this.attachDate,
    attachTime: attachTime ?? this.attachTime,
    attachToEmail: attachToEmail ?? this.attachToEmail,
    inactive: inactive ?? this.inactive,
    dateStamp: dateStamp ?? this.dateStamp,
    extension: extension ?? this.extension,
    fileExtension: fileExtension ?? this.fileExtension,
    documentType: documentType ?? this.documentType,
    inputBy: inputBy ?? this.inputBy,
    hasImage: hasImage ?? this.hasImage,
    hasFile: hasFile ?? this.hasFile,
    imageDocumentCount: imageDocumentCount ?? this.imageDocumentCount,
    fileIsModified: fileIsModified ?? this.fileIsModified,
    fileDataUrl: fileDataUrl ?? this.fileDataUrl,
    filePath: filePath ?? this.filePath,
    auditNote: auditNote ?? this.auditNote,
    recordTitle: recordTitle ?? this.recordTitle,
    urlIdentifier: urlIdentifier ?? this.urlIdentifier,
    fields: fields ?? this.fields,
    custom: custom ?? this.custom,
    defaultFieldAttributes:
        defaultFieldAttributes ?? this.defaultFieldAttributes,
    original: original ?? this.original,
    translation: translation ?? this.translation,
    hasImport: hasImport ?? this.hasImport,
    hasDocuments: hasDocuments ?? this.hasDocuments,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}