FSelectScrollHandleStyle constructor
      const
      FSelectScrollHandleStyle({ 
    
- required Color background,
- required IconThemeData iconStyle,
- Duration enterDuration = const Duration(milliseconds: 200),
- double pixelsPerSecond = 200,
Creates a FSelectScrollHandleStyle.
Implementation
const FSelectScrollHandleStyle({
  required this.background,
  required this.iconStyle,
  this.enterDuration = const Duration(milliseconds: 200),
  this.pixelsPerSecond = 200,
}) : assert(0 < pixelsPerSecond, 'pixelsPerSecond ($pixelsPerSecond) must be > 0');