copyWithWrapped method
FwStandardModulesUtilitiesWebImportImportExcelRequest
copyWithWrapped({
- Wrapped<
String?> ? moduleName, - Wrapped<
String?> ? moduleId, - Wrapped<
String?> ? importDescription, - Wrapped<
List< ? excelObjects,Object> ?> - Wrapped<
String?> ? sessionId, - Wrapped<
int?> ? startIndex, - Wrapped<
int?> ? totalSteps, - Wrapped<
bool?> ? isFirstBatch, - Wrapped<
bool?> ? isLastBatch, - Wrapped<
String?> ? webImportId, - Wrapped<
bool?> ? fastMode,
Implementation
FwStandardModulesUtilitiesWebImportImportExcelRequest copyWithWrapped({
Wrapped<String?>? moduleName,
Wrapped<String?>? moduleId,
Wrapped<String?>? importDescription,
Wrapped<List<Object>?>? excelObjects,
Wrapped<String?>? sessionId,
Wrapped<int?>? startIndex,
Wrapped<int?>? totalSteps,
Wrapped<bool?>? isFirstBatch,
Wrapped<bool?>? isLastBatch,
Wrapped<String?>? webImportId,
Wrapped<bool?>? fastMode,
}) {
return FwStandardModulesUtilitiesWebImportImportExcelRequest(
moduleName: (moduleName != null ? moduleName.value : this.moduleName),
moduleId: (moduleId != null ? moduleId.value : this.moduleId),
importDescription: (importDescription != null
? importDescription.value
: this.importDescription),
excelObjects: (excelObjects != null
? excelObjects.value
: this.excelObjects),
sessionId: (sessionId != null ? sessionId.value : this.sessionId),
startIndex: (startIndex != null ? startIndex.value : this.startIndex),
totalSteps: (totalSteps != null ? totalSteps.value : this.totalSteps),
isFirstBatch: (isFirstBatch != null
? isFirstBatch.value
: this.isFirstBatch),
isLastBatch: (isLastBatch != null ? isLastBatch.value : this.isLastBatch),
webImportId: (webImportId != null ? webImportId.value : this.webImportId),
fastMode: (fastMode != null ? fastMode.value : this.fastMode),
);
}