stopOverlayService method
Stops the overlay service.
Implementation
@override
Future<void> stopOverlayService() async {
try {
await methodChannel.invokeMethod('stopOverlayService');
} catch (e) {
debugPrint('Error stopping overlay service: $e');
}
}