effectiveStops property
The stops used by the default SnapSheetPhysics when stops is not explicitly provided.
Always includes initialExtent so the sheet doesn't immediately snap away from the extent it was opened at.
Implementation
@protected
List<double> get effectiveStops {
if (stops != null) return stops!;
return <double>{0, initialExtent, 1}.toList()..sort();
}