evaluate static method

Color evaluate(
  1. Color value,
  2. Set<WidgetEvent> events
)
override

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);
}