ScrollBarConfiguration constructor

const ScrollBarConfiguration({
  1. required Color thumbColor,
  2. required Color trackColor,
  3. Color? hoverColor,
  4. double? radius,
  5. double? width,
  6. double? height,
})

Implementation

const ScrollBarConfiguration({
  required this.thumbColor,
  required this.trackColor,
  this.hoverColor,
  this.radius,
  this.width,
  this.height,
});