12345678910111213141516171819202122232425262728 |
- part of 'profile_repository.dart';
- String _$profileRepositoryHash() => r'b561be8d75f11602036430c625a432d1c522d99e';
- @ProviderFor(profileRepository)
- final profileRepositoryProvider = Provider<ProfileRepository>.internal(
- profileRepository,
- name: r'profileRepositoryProvider',
- debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
- ? null
- : _$profileRepositoryHash,
- dependencies: null,
- allTransitiveDependencies: null,
- );
- @Deprecated('Will be removed in 3.0. Use Ref instead')
- typedef ProfileRepositoryRef = ProviderRef<ProfileRepository>;
|