accessOnEventContext method

AFOnEventContext accessOnEventContext()
inherited

Intended to be used in subclasses to access AFOnEventContext in event handlers for returned widgets.

Data from this object should not be used in rendering. If you need additional data for rendering in a theme subclass (especially for a third party library), then see ..._define_core.dart context.addStateViewAugmentationHandler.

Implementation

AFOnEventContext accessOnEventContext() {
  return AFBuildOnEventContext(
    dispatcher: context.dispatcher,
    buildContext: context,
  );
}