moglerdev / ShelfGuardian

Inventory Management Tool for the Module Mobile Application (AIN / SS24)
GNU General Public License v3.0
2 stars 0 forks source link

[feature] Search Products #5

Closed moglerdev closed 3 months ago

moglerdev commented 3 months ago

view prodcut_state.dart


// TODO: Implement ProductSearchedList
class ProductSearchedList extends ProductListState {
  final List<Product> products;
  final String search;
  final List<Product> hiddenProducts;

  @override
  List<Product> getProducts() => products;

  ProductSearchedList(this.products, this.search, this.hiddenProducts);
}