evaluate static method

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

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

Implementation

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