ScrollArea constructor
ScrollArea({
- required Widget child,
- EdgeInsets? padding,
- int? width,
- int? height,
- bool showScrollbar = true,
- ScrollController? controller,
- Key? key,
Implementation
ScrollArea({
required this.child,
this.padding,
this.width,
this.height,
this.showScrollbar = true,
this.controller,
super.key,
});