getUpdatesFor static method

List<_FiredStateUpdate> getUpdatesFor(
  1. String stateName
)

Get all fired updates for a given stateName.

Implementation

static List<_FiredStateUpdate> getUpdatesFor(String stateName) {
  return _firedUpdates.where((u) => u.stateName == stateName).toList();
}