evaluate<T extends Widget?> static method
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);
}