SmoothScrollPhysics.fromIntensity constructor

SmoothScrollPhysics.fromIntensity(
  1. KScrollIntensity intensity,
  2. 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);
}