frameCount property

int frameCount

keeps track of the actual frame count

Implementation

int get frameCount => _frameCount;
void frameCount=(int n)

Implementation

set frameCount(int n) {
  if (n < 0) throw TimecodeException('frames must be given in integers greater than zero. Received: $n');
  _frameCount = n;
  _recomputeParts();
  _streamController.add(true);
}