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. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  31. List<FwStandardDataFwCustomValue>? custom,
  32. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  33. List<FwStandardDataFwTranslatedValue>? translation,
})

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,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  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,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes,
      translation: translation ?? this.translation);
}