DOMActionCall<T> constructor

DOMActionCall<T>(
  1. DOMActionExecutor<T> executor,
  2. String name,
  3. List<String>? parameters
)

Implementation

DOMActionCall(
    DOMActionExecutor<T> executor, this.name, List<String>? parameters)
    : parameters = parameters ?? <String>[],
      super(executor);