12345678910111213141516171819202122232425262728 |
- part of 'profile_service_provider.dart';
- String _$profileServiceHash() => r'e0aa8bdee39ee2b1dff16b7ce13a6f32e7b17b76';
- @ProviderFor(profileService)
- final profileServiceProvider = Provider<ProfileService>.internal(
- profileService,
- name: r'profileServiceProvider',
- debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
- ? null
- : _$profileServiceHash,
- dependencies: null,
- allTransitiveDependencies: null,
- );
- @Deprecated('Will be removed in 3.0. Use Ref instead')
- typedef ProfileServiceRef = ProviderRef<ProfileService>;
|