ExpandOrScroll constructor

const ExpandOrScroll({
  1. EdgeInsetsGeometry padding = EdgeInsets.zero,
  2. bool wrapInSafeArea = true,
  3. ScrollController? scrollController,
  4. required Widget child,
})

Implementation

const ExpandOrScroll({
  this.padding = EdgeInsets.zero,
  this.wrapInSafeArea = true,
  this.scrollController,
  required this.child,
});