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 'categories_provider.dart';
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint, type=warning
/// Provider for categories list with API-first approach
/// Provider for categories list with online-first approach
@ProviderFor(Categories)
const categoriesProvider = CategoriesProvider._();
/// Provider for categories list with API-first approach
/// Provider for categories list with online-first approach
final class CategoriesProvider
extends $AsyncNotifierProvider<Categories, List<Category>> {
/// Provider for categories list with API-first approach
/// Provider for categories list with online-first approach
const CategoriesProvider._()
: super(
from: null,
@@ -38,7 +38,7 @@ final class CategoriesProvider
String _$categoriesHash() => r'33c33b08f8926e5bbbd112285591c74a3ff0f61c';
/// Provider for categories list with API-first approach
/// Provider for categories list with online-first approach
abstract class _$Categories extends $AsyncNotifier<List<Category>> {
FutureOr<List<Category>> build();