copyWith method
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,
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);
}