removeExecutor method

void removeExecutor(
  1. Executor executor
)

Remove the executor to the list of executors.

Implementation

void removeExecutor(Executor<dynamic> executor) {
  _group.remove(executor.measurements);
  _executors.remove(executor);
}