import 'package:flutter_local_notifications/flutter_local_notifications.dart'; import 'package:hiddify/services/notification/notification_service.dart'; class StubNotificationService implements NotificationService { @override Future init() async { return; } @override void onDidReceiveNotificationResponse( NotificationResponse notificationResponse, ) {} @override Future removeNotification(int id) async {} @override Future showNotification({ required int id, required String title, String? body, NotificationDetails? details, String? payload, }) async {} @override Future grantPermission() async { return true; } }