restrictedTimeAtBegin property

int get restrictedTimeAtBegin

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

Implementation

int get restrictedTimeAtBegin {
  if (hasRestrictedBeginEndDifferentiation) {
    return (restrictedTimeS * (1 - ndBeginEndRatio)).round();
  }

  return 0;
}