beamingHistoryCompleteLength property

int beamingHistoryCompleteLength

Returns the complete length of beaming history, that is the sum of all history lengths for each BeamLocation in beamingHistory.

Implementation

int get beamingHistoryCompleteLength {
  var length = 0;
  for (var location in beamingHistory) {
    length += location.history.length;
  }
  return length;
}