copyWith method

WebApiModulesSettingsSourceSettingsSourceSource copyWith({
  1. String? sourceId,
  2. String? source,
  3. String? sourceType,
  4. String? description,
  5. String? path,
  6. String? fileName,
  7. String? ftpHost,
  8. int? ftpPort,
  9. String? ftpUserName,
  10. String? ftpPassword,
  11. String? ftpPath,
  12. String? ftpFileName,
  13. bool? ftpArchive,
  14. String? ftpArchivePath,
  15. bool? ftpSsl,
  16. String? temporaryFtpFileName,
  17. bool? inactive,
  18. bool? systemSource,
  19. String? temporarySoapPath,
  20. String? webServiceUserName,
  21. String? webServicePassword,
  22. bool? useProxy,
  23. String? proxy,
  24. int? proxyPort,
  25. String? proxyUserName,
  26. String? proxyPassword,
  27. String? dateStamp,
  28. String? auditNote,
  29. String? recordTitle,
  30. dynamic urlIdentifier,
  31. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  32. List<FwStandardDataFwCustomValue>? custom,
  33. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  34. FwStandardBusinessLogicFwBusinessLogic? original,
  35. List<FwStandardDataFwTranslatedValue>? translation,
  36. bool? hasImport,
  37. bool? hasDocuments,
  38. String? createdByUserId,
  39. String? createdByUserName,
  40. String? createdDateTime,
  41. String? modifiedByUserId,
  42. String? modifiedByUserName,
  43. String? modifiedDateTime,
})

Implementation

WebApiModulesSettingsSourceSettingsSourceSource copyWith({
  String? sourceId,
  String? source,
  String? sourceType,
  String? description,
  String? path,
  String? fileName,
  String? ftpHost,
  int? ftpPort,
  String? ftpUserName,
  String? ftpPassword,
  String? ftpPath,
  String? ftpFileName,
  bool? ftpArchive,
  String? ftpArchivePath,
  bool? ftpSsl,
  String? temporaryFtpFileName,
  bool? inactive,
  bool? systemSource,
  String? temporarySoapPath,
  String? webServiceUserName,
  String? webServicePassword,
  bool? useProxy,
  String? proxy,
  int? proxyPort,
  String? proxyUserName,
  String? proxyPassword,
  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 WebApiModulesSettingsSourceSettingsSourceSource(
    sourceId: sourceId ?? this.sourceId,
    source: source ?? this.source,
    sourceType: sourceType ?? this.sourceType,
    description: description ?? this.description,
    path: path ?? this.path,
    fileName: fileName ?? this.fileName,
    ftpHost: ftpHost ?? this.ftpHost,
    ftpPort: ftpPort ?? this.ftpPort,
    ftpUserName: ftpUserName ?? this.ftpUserName,
    ftpPassword: ftpPassword ?? this.ftpPassword,
    ftpPath: ftpPath ?? this.ftpPath,
    ftpFileName: ftpFileName ?? this.ftpFileName,
    ftpArchive: ftpArchive ?? this.ftpArchive,
    ftpArchivePath: ftpArchivePath ?? this.ftpArchivePath,
    ftpSsl: ftpSsl ?? this.ftpSsl,
    temporaryFtpFileName: temporaryFtpFileName ?? this.temporaryFtpFileName,
    inactive: inactive ?? this.inactive,
    systemSource: systemSource ?? this.systemSource,
    temporarySoapPath: temporarySoapPath ?? this.temporarySoapPath,
    webServiceUserName: webServiceUserName ?? this.webServiceUserName,
    webServicePassword: webServicePassword ?? this.webServicePassword,
    useProxy: useProxy ?? this.useProxy,
    proxy: proxy ?? this.proxy,
    proxyPort: proxyPort ?? this.proxyPort,
    proxyUserName: proxyUserName ?? this.proxyUserName,
    proxyPassword: proxyPassword ?? this.proxyPassword,
    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,
  );
}