evaluate static method

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

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

Implementation

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