domActionExecutor property

DOMActionExecutor<T>? domActionExecutor

Implementation

DOMActionExecutor<T>? get domActionExecutor => _domActionExecutor;
void domActionExecutor=(DOMActionExecutor<T>? value)

Implementation

set domActionExecutor(DOMActionExecutor<T>? value) {
  _domActionExecutor = value;
  if (_domActionExecutor != null) {
    _domActionExecutor!.domGenerator = this;
  }
}