execute method

T execute(
  1. void e()
)

Implementation

T execute(final void Function() e) {
  e();
  return this;
}