execute method

void execute()

Implementation

void execute() {
  for (var f in _stack) {
    f.call();
  }
}