copyWith method

WebApiModulesUtilitiesWebImportWebImport copyWith({
  1. int? webImportId,
  2. String? userId,
  3. String? userName,
  4. String? moduleName,
  5. String? description,
  6. String? importDateTime,
  7. int? totalRecords,
  8. int? totalImported,
  9. int? totalFailed,
  10. String? dateStamp,
  11. String? auditNote,
  12. String? recordTitle,
  13. dynamic urlIdentifier,
  14. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  15. List<FwStandardDataFwCustomValue>? custom,
  16. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  17. FwStandardBusinessLogicFwBusinessLogic? original,
  18. List<FwStandardDataFwTranslatedValue>? translation,
  19. bool? hasImport,
  20. bool? hasDocuments,
  21. String? createdByUserId,
  22. String? createdByUserName,
  23. String? createdDateTime,
  24. String? modifiedByUserId,
  25. String? modifiedByUserName,
  26. String? modifiedDateTime,
})

Implementation

WebApiModulesUtilitiesWebImportWebImport copyWith({
  int? webImportId,
  String? userId,
  String? userName,
  String? moduleName,
  String? description,
  String? importDateTime,
  int? totalRecords,
  int? totalImported,
  int? totalFailed,
  String? dateStamp,
  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 WebApiModulesUtilitiesWebImportWebImport(
    webImportId: webImportId ?? this.webImportId,
    userId: userId ?? this.userId,
    userName: userName ?? this.userName,
    moduleName: moduleName ?? this.moduleName,
    description: description ?? this.description,
    importDateTime: importDateTime ?? this.importDateTime,
    totalRecords: totalRecords ?? this.totalRecords,
    totalImported: totalImported ?? this.totalImported,
    totalFailed: totalFailed ?? this.totalFailed,
    dateStamp: dateStamp ?? this.dateStamp,
    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,
  );
}