byteLength property

int get byteLength

Number of bytes for one record in TimeLog.records.

Implementation

int get byteLength {
  var length = 0;
  if (start == null) {
    length += 6;
  }
  if (position != null) {
    length += position!.byteLength;
  }
  return length + 1 + dataLogValues.length * 5;
}