actionWithContext property

  1. @override
ActionWithContext? get actionWithContext
override

Implementation

@override
ActionWithContext? get actionWithContext => _actionWithContext;
set actionWithContext (ActionWithContext? value)

Implementation

set actionWithContext(ActionWithContext? value) {
  if (value == _actionWithContext) return;

  _actionWithContext = value;
  _action = () => value!(null);
  notifyPropertyChange(#actionWithContext, _actionWithContext, value);
}