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