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