updateTopText method

void updateTopText(
  1. String text
)

Updates bubble topText

Implementation

void updateTopText(String text) => !_isOpen
    ? throw Exception('Bubble not running')
    : _platform.invokeMethod('updateBubbleTitle', text);