execute method

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

Implementation

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