possibleWeightChanges property

Iterable<Connection> get possibleWeightChanges

Implementation

Iterable<Connection> get possibleWeightChanges sync* {
  for(var c in connections) {
    if (c.enabled) {
      yield c;
    }
  }
}