locationBootstrapProvider top-level property
Implementation
final locationBootstrapProvider = Provider<LocationBootstrap>((ref) {
return LocationBootstrap(
config: ref.watch(inAppLocationConfigProvider),
storage: ref.watch(locationStorageProvider),
kit: ref.watch(locationKitProvider) as InAppLocationKit,
);
});