call method

void call(
  1. void action()
)

Implementation

void call(void Function() action) {
  queue.add(action);
  _invoke();
}