In the home.dart file #Make a collection cards (102) on the line **`List<Product> products = getProducts(Category.all);`**, the **getProducts** method does not exists instead the correct code is **`List<Product> products = ProductsRepository.loadProducts();`** also don't forget to add **import 'model/products_repository.dart';**