ScrollArea constructor

ScrollArea({
  1. required Widget child,
  2. EdgeInsets? padding,
  3. int? width,
  4. int? height,
  5. bool showScrollbar = true,
  6. ScrollController? controller,
  7. Key? key,
})

Implementation

ScrollArea({
  required this.child,
  this.padding,
  this.width,
  this.height,
  this.showScrollbar = true,
  this.controller,
  super.key,
});