PlutoScrollBehavior constructor

const PlutoScrollBehavior({
  1. required bool isMobile,
  2. Set<PointerDeviceKind>? userDragDevices,
})

Implementation

const PlutoScrollBehavior({
  required this.isMobile,
  Set<PointerDeviceKind>? userDragDevices,
})  : _dragDevices = userDragDevices ??
          (isMobile ? _mobileDragDevices : _desktopDragDevices),
      super();