Files
MrbWebLibre/app/lib/features/user/domain/services/local_authentication.g.dart
T

57 lines
1.6 KiB
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'local_authentication.dart';
// **************************************************************************
// RiverpodGenerator
// **************************************************************************
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint, type=warning
@ProviderFor(LocalAuthenticationService)
final localAuthenticationServiceProvider =
LocalAuthenticationServiceProvider._();
final class LocalAuthenticationServiceProvider
extends $AsyncNotifierProvider<LocalAuthenticationService, bool> {
LocalAuthenticationServiceProvider._()
: super(
from: null,
argument: null,
retry: null,
name: r'localAuthenticationServiceProvider',
isAutoDispose: false,
dependencies: null,
$allTransitiveDependencies: null,
);
@override
String debugGetCreateSourceHash() => _$localAuthenticationServiceHash();
@$internal
@override
LocalAuthenticationService create() => LocalAuthenticationService();
}
String _$localAuthenticationServiceHash() =>
r'0f4b2b47e94b2426a2219eca4eb2258bf683ab7c';
abstract class _$LocalAuthenticationService extends $AsyncNotifier<bool> {
FutureOr<bool> build();
@$mustCallSuper
@override
void runBuild() {
final ref = this.ref as $Ref<AsyncValue<bool>, bool>;
final element =
ref.element
as $ClassProviderElement<
AnyNotifier<AsyncValue<bool>, bool>,
AsyncValue<bool>,
Object?,
Object?
>;
element.handleCreate(ref, build);
}
}