execute method

Stream<T> execute(
  1. void executor()
)

Implementation

Stream<T> execute(void Function() executor) {
  executor();
  return this;
}