evaluate static method

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

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

Implementation

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