stack_wallet/lib/providers/global/notifications_provider.dart
2023-05-27 00:19:24 +03: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);