copyWith method

WebApiModulesUtilitiesMigrateSelectAllNoneMigrateItemRequest copyWith({
  1. String? sessionId,
  2. bool? selectAll,
  3. String? inventoryTypeId,
  4. String? categoryId,
  5. String? subCategoryId,
  6. String? warehouseId,
  7. String? inventoryId,
  8. String? vendorId,
  9. String? description,
  10. String? barCode,
})

Implementation

WebApiModulesUtilitiesMigrateSelectAllNoneMigrateItemRequest copyWith({
  String? sessionId,
  bool? selectAll,
  String? inventoryTypeId,
  String? categoryId,
  String? subCategoryId,
  String? warehouseId,
  String? inventoryId,
  String? vendorId,
  String? description,
  String? barCode,
}) {
  return WebApiModulesUtilitiesMigrateSelectAllNoneMigrateItemRequest(
    sessionId: sessionId ?? this.sessionId,
    selectAll: selectAll ?? this.selectAll,
    inventoryTypeId: inventoryTypeId ?? this.inventoryTypeId,
    categoryId: categoryId ?? this.categoryId,
    subCategoryId: subCategoryId ?? this.subCategoryId,
    warehouseId: warehouseId ?? this.warehouseId,
    inventoryId: inventoryId ?? this.inventoryId,
    vendorId: vendorId ?? this.vendorId,
    description: description ?? this.description,
    barCode: barCode ?? this.barCode,
  );
}