evaluate<T extends Widget?> static method

T evaluate<T extends Widget?>(
  1. T value,
  2. Set<WidgetEvent> events
)
override

Evaluates a given value based on the provided events.

This static method is a convenience wrapper around DrivenProperty.evaluate.

Implementation

static T evaluate<T extends Widget?>(T value, Set<WidgetEvent> events) {
  return DrivenProperty.evaluate<T>(value, events);
}