effectiveDuration property

Duration get effectiveDuration

Implementation

Duration get effectiveDuration => Duration(
  microseconds: math.max(
    1,
    (_config.durationPerFrame.inMicroseconds / _speed).round(),
  ),
);