updateBubbleWidgetData method

Future<void> updateBubbleWidgetData(
  1. Map<String, dynamic> widgetData, {
  2. String? template,
})

Updates dynamic content of the active floating widget overlay.

Implementation

Future<void> updateBubbleWidgetData(
  Map<String, dynamic> widgetData, {
  String? template,
}) async {
  await _channel.invokeMethod('updateBubbleWidgetData', {
    'widgetData': widgetData,
    'template': template,
  });
}