pushersProvider top-level property

dynamic pushersProvider
final

Implementation

final pushersProvider = FutureProvider<List<Pusher>>((ref) async {
  final client = ref.watch(alwaysClientProvider);
  return (await client.pushers()).toList();
});