If you want it to apply to the entire app, you can do this by setting it in ThemeData
when initializing the app.
ThemeData get lightTheme {
return ThemeData(
scrollbarTheme: ScrollbarThemeData(
thickness: WidgetStateProperty.all(0),
),
);
}