evaluate static method
Resolves the value for the given set of events if value
is a
DrivenProperty, otherwise returns the value itself.
This is useful for widgets that have parameters which can optionally be a DrivenProperty.
Implementation
static Color evaluate(Color value, Set<WidgetEvent> events) {
return DrivenProperty.evaluate<Color>(value, events);
}