updateBackgroundColor method

void updateBackgroundColor(
  1. String bubbleColor
)

Updates bubble backgroundColor

Implementation

void updateBackgroundColor(String bubbleColor) => !_isOpen
    ? throw Exception('Bubble not running')
    : _platform.invokeMethod('updateBubbleColor', bubbleColor);