isIndeterminate static method

bool isIndeterminate(
  1. Set<WidgetEvent> events
)

Checker for whether events considers WidgetEvent.indeterminate to be active.

Implementation

static bool isIndeterminate(Set<WidgetEvent> events) {
  return events.contains(indeterminate);
}