stack_wallet/lib/providers/global/notifications_provider.dart

6 lines
220 B
Dart
Raw Normal View History

2022-08-26 08:11:35 +00:00
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:stackwallet/services/notifications_service.dart';
final notificationsProvider =
ChangeNotifierProvider((_) => NotificationsService.instance);