maxAbsDelta property

double get maxAbsDelta

Maximum |currentDelta| across every active slide entry, or 0.0 when no slides are active.

Implementation

double get maxAbsDelta {
  if (!hasActive) return 0.0;
  double m = 0.0;
  for (final nid in _activeSlideNids) {
    final d = _slideByNid[nid]!.currentDelta.abs();
    if (d > m) m = d;
  }
  return m;
}