getActionsFor static method

List<_FiredStateAction> getActionsFor(
  1. String stateName
)

Get all fired actions for a given stateName.

Implementation

static List<_FiredStateAction> getActionsFor(String stateName) {
  return _firedActions.where((a) => a.stateName == stateName).toList();
}