FSelectScrollHandleStyle constructor

const FSelectScrollHandleStyle({
  1. required Color background,
  2. required IconThemeData iconStyle,
  3. Duration enterDuration = const Duration(milliseconds: 200),
  4. double pixelsPerSecond = 200,
})

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');