evaluate static method

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

Resolves the value for the given set of events if value is an event driven WxAnchorStyle, otherwise returns the value itself.

Implementation

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