push method

void push()

Implementation

void push() {
  for (VoidCallback listener in listeners) {
    listener();
  }
}