stopBubbleHead method

Future<void> stopBubbleHead()

closes floaty-bubble head

Implementation

Future<void> stopBubbleHead() async {
  try {
    await _channel.invokeMethod('stopBubbleHead');
    print('✅ Bubble stopped');
  } catch (e) {
    print('❌ Error stopping bubble: $e');
    rethrow;
  }
}