possibleActivationChanges property

Iterable<Hidden> get possibleActivationChanges

Implementation

Iterable<Hidden> get possibleActivationChanges sync* {
  for (var h in hiddens) {
    yield h;
  }
}