mirror of
https://github.com/lucavenir/go_router_riverpod.git
synced 2025-08-06 14:59:53 +08:00
27 lines
1.0 KiB
Dart
27 lines
1.0 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'auth.dart';
|
|
|
|
// **************************************************************************
|
|
// RiverpodGenerator
|
|
// **************************************************************************
|
|
|
|
String _$authNotifierHash() => r'9897db452b43403755ac7852256c19e5aa363c91';
|
|
|
|
/// This notifier holds and handles the authentication state of the application
|
|
///
|
|
/// Copied from [AuthNotifier].
|
|
@ProviderFor(AuthNotifier)
|
|
final authNotifierProvider =
|
|
AutoDisposeAsyncNotifierProvider<AuthNotifier, User>.internal(
|
|
AuthNotifier.new,
|
|
name: r'authNotifierProvider',
|
|
debugGetCreateSourceHash:
|
|
const bool.fromEnvironment('dart.vm.product') ? null : _$authNotifierHash,
|
|
dependencies: null,
|
|
allTransitiveDependencies: null,
|
|
);
|
|
|
|
typedef _$AuthNotifier = AutoDisposeAsyncNotifier<User>;
|
|
// ignore_for_file: unnecessary_raw_strings, subtype_of_sealed_class, invalid_use_of_internal_member, do_not_use_environment, prefer_const_constructors, public_member_api_docs, avoid_private_typedef_functions
|