SmoothScrollPhysics.fromIntensity constructor
SmoothScrollPhysics.fromIntensity(
- KScrollIntensity intensity,
- ScrollPhysics? parent
Creates physics from a scroll intensity preset
Implementation
factory SmoothScrollPhysics.fromIntensity(KScrollIntensity intensity, ScrollPhysics? parent) {
return SmoothScrollPhysics(config: ScrollIntensityConfig.fromIntensity(intensity), parent: parent);
}