totalSize property

int get totalSize

Calculates the total size in bits of the entire message.

Returns the total size in bits of the message including headers.

Implementation

int get totalSize {
  int size = 0;
  for (Segment segment in segments) {
    size += segment.sizeInBits();
  }
  return size;
}