append method

void append(
  1. StatesTransitionHandler? func
)

Implementation

void append(StatesTransitionHandler? func) {
  if (func != null) _handlers.add(func);
}