🎨 Use feature based folder structure
This commit is contained in:
56
lib/notifications/notification.g.dart
Normal file
56
lib/notifications/notification.g.dart
Normal file
@@ -0,0 +1,56 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'notification.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// RiverpodGenerator
|
||||
// **************************************************************************
|
||||
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(NotificationUnreadCountNotifier)
|
||||
final notificationUnreadCountProvider =
|
||||
NotificationUnreadCountNotifierProvider._();
|
||||
|
||||
final class NotificationUnreadCountNotifierProvider
|
||||
extends $AsyncNotifierProvider<NotificationUnreadCountNotifier, int> {
|
||||
NotificationUnreadCountNotifierProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
retry: null,
|
||||
name: r'notificationUnreadCountProvider',
|
||||
isAutoDispose: true,
|
||||
dependencies: null,
|
||||
$allTransitiveDependencies: null,
|
||||
);
|
||||
|
||||
@override
|
||||
String debugGetCreateSourceHash() => _$notificationUnreadCountNotifierHash();
|
||||
|
||||
@$internal
|
||||
@override
|
||||
NotificationUnreadCountNotifier create() => NotificationUnreadCountNotifier();
|
||||
}
|
||||
|
||||
String _$notificationUnreadCountNotifierHash() =>
|
||||
r'8bff5ad3b65389589b4112add3246afd9b8e38f9';
|
||||
|
||||
abstract class _$NotificationUnreadCountNotifier extends $AsyncNotifier<int> {
|
||||
FutureOr<int> build();
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final ref = this.ref as $Ref<AsyncValue<int>, int>;
|
||||
final element =
|
||||
ref.element
|
||||
as $ClassProviderElement<
|
||||
AnyNotifier<AsyncValue<int>, int>,
|
||||
AsyncValue<int>,
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleCreate(ref, build);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user