ScrollbarThemeModifier constructor

const ScrollbarThemeModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. required ScrollbarThemeData data,
})

Constructs a scrollbar theme that configures all descendant Scrollbar widgets.

Implementation

const ScrollbarThemeModifier({
  super.key,
  super.child,
  super.modifierKey,
  required this.data,
});