FespMultiScroll constructor

const FespMultiScroll({
  1. Key? key,
  2. bool horizontal = true,
  3. bool vertical = true,
  4. required Widget child,
})

Implementation

const FespMultiScroll({
  super.key,
  this.horizontal = true,
  this.vertical = true,
  required this.child,
});