restrictedTimeAtEnd property

int get restrictedTimeAtEnd

Restricted time at end (computed from restrictedTimeS and ndBeginEndRatio).

Implementation

int get restrictedTimeAtEnd {
  if (hasRestrictedBeginEndDifferentiation) {
    return (restrictedTimeS * ndBeginEndRatio).round();
  }

  return 0;
}