copyWithWrapped method

FwStandardModulesUtilitiesWebImportImportExcelRequest copyWithWrapped({
  1. Wrapped<String?>? moduleName,
  2. Wrapped<String?>? moduleId,
  3. Wrapped<String?>? importDescription,
  4. Wrapped<List<Object>?>? excelObjects,
  5. Wrapped<String?>? sessionId,
  6. Wrapped<int?>? startIndex,
  7. Wrapped<int?>? totalSteps,
  8. Wrapped<bool?>? isFirstBatch,
  9. Wrapped<bool?>? isLastBatch,
  10. Wrapped<String?>? webImportId,
  11. 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),
  );
}