stack_wallet/lib/providers/global/notifications_provider.dart
2022-08-26 16:11:35 +08:00

5 lines
220 B
Dart

import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:stackwallet/services/notifications_service.dart';
final notificationsProvider =
ChangeNotifierProvider((_) => NotificationsService.instance);