actionWithContext property

ActionWithContext? get actionWithContext

Implementation

ActionWithContext? get actionWithContext => _actionWithContext;
  1. @Deprecated('This should be final.')
set actionWithContext (ActionWithContext? value)

Implementation

@Deprecated('This should be final.')
set actionWithContext(ActionWithContext? value) {
  _actionWithContext = value;
  _action = () => value!(null);
}