canHandleNotifications method

bool canHandleNotifications(
  1. IndicatorController controller
)

Notifications can only be handled in the "dragging" and "armed" state.

Implementation

bool canHandleNotifications(IndicatorController controller) =>
    controller.state.isDragging || controller.state.isArmed;