isRunning method

Future<bool> isRunning()

Check if the bubble is currently running.

Returns true if the bubble is running, false otherwise.

The bubble is considered running if it is visible on the screen.

If the bubble is not running, you can start it by calling startBubble.

If the bubble is running, you can stop it by calling stopBubble.

Implementation

Future<bool> isRunning() {
  return DashBubblePlatform.instance.isRunning();
}