updateMiddleTextColor method

void updateMiddleTextColor(
  1. String textColor
)

Updates bubble middleTextColor

Implementation

void updateMiddleTextColor(String textColor) => !_isOpen
    ? throw Exception('Bubble not running')
    : _platform.invokeMethod('updateBubbleTextColor', textColor);