evaluate<T extends Widget?> static method
Evaluates a given value based on the provided events.
This static method delegates the evaluation to the DrivenProperty.evaluate
method.
Implementation
static T evaluate<T extends Widget?>(T value, Set<WidgetEvent> events) {
return DrivenProperty.evaluate<T>(value, events);
}