stopBubbleWidget method
Alias for stopping the floating widget overlay.
Implementation
Future<void> stopBubbleWidget() async {
try {
await _channel.invokeMethod('stopBubbleWidget');
} catch (e) {
print('❌ Error stopping bubble widget: $e');
rethrow;
}
}