VerticalCenterScrollView constructor

const VerticalCenterScrollView({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets? padding,
  4. bool autoPop = false,
  5. bool hasCloseButton = false,
})

Implementation

const VerticalCenterScrollView({
  super.key,
  required this.child,
  this.padding,
  this.autoPop = false,
  this.hasCloseButton = false,
});