55 lines
1.5 KiB
Dart
55 lines
1.5 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'profile.dart';
|
|
|
|
// **************************************************************************
|
|
// RiverpodGenerator
|
|
// **************************************************************************
|
|
|
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
// ignore_for_file: type=lint, type=warning
|
|
|
|
@ProviderFor(ProfileRepository)
|
|
final profileRepositoryProvider = ProfileRepositoryProvider._();
|
|
|
|
final class ProfileRepositoryProvider
|
|
extends $AsyncNotifierProvider<ProfileRepository, List<Profile>> {
|
|
ProfileRepositoryProvider._()
|
|
: super(
|
|
from: null,
|
|
argument: null,
|
|
retry: null,
|
|
name: r'profileRepositoryProvider',
|
|
isAutoDispose: false,
|
|
dependencies: null,
|
|
$allTransitiveDependencies: null,
|
|
);
|
|
|
|
@override
|
|
String debugGetCreateSourceHash() => _$profileRepositoryHash();
|
|
|
|
@$internal
|
|
@override
|
|
ProfileRepository create() => ProfileRepository();
|
|
}
|
|
|
|
String _$profileRepositoryHash() => r'b770e7406e1602f808cc8076c1eda67b4fce6b2d';
|
|
|
|
abstract class _$ProfileRepository extends $AsyncNotifier<List<Profile>> {
|
|
FutureOr<List<Profile>> build();
|
|
@$mustCallSuper
|
|
@override
|
|
void runBuild() {
|
|
final ref = this.ref as $Ref<AsyncValue<List<Profile>>, List<Profile>>;
|
|
final element =
|
|
ref.element
|
|
as $ClassProviderElement<
|
|
AnyNotifier<AsyncValue<List<Profile>>, List<Profile>>,
|
|
AsyncValue<List<Profile>>,
|
|
Object?,
|
|
Object?
|
|
>;
|
|
element.handleCreate(ref, build);
|
|
}
|
|
}
|