updateBottomText method

void updateBottomText(
  1. String text
)

Updates bubble bottomText

Implementation

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