This commit is contained in:
2025-10-16 18:06:31 +07:00
parent 7dc66d80fc
commit 1cda00c0bf
13 changed files with 1350 additions and 240 deletions

View File

@@ -8,15 +8,15 @@ part of 'products_provider.dart';
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint, type=warning
/// Provider for products list with API-first approach
/// Provider for products list with online-first approach
@ProviderFor(Products)
const productsProvider = ProductsProvider._();
/// Provider for products list with API-first approach
/// Provider for products list with online-first approach
final class ProductsProvider
extends $AsyncNotifierProvider<Products, List<Product>> {
/// Provider for products list with API-first approach
/// Provider for products list with online-first approach
const ProductsProvider._()
: super(
from: null,
@@ -38,7 +38,7 @@ final class ProductsProvider
String _$productsHash() => r'0ff8c2de46bb4b1e29678cc811ec121c9fb4c8eb';
/// Provider for products list with API-first approach
/// Provider for products list with online-first approach
abstract class _$Products extends $AsyncNotifier<List<Product>> {
FutureOr<List<Product>> build();