DecoratedScrollView constructor

const DecoratedScrollView({
  1. Key? key,
  2. ScrollController? scrollController,
  3. EdgeInsets? padding,
  4. required Widget child,
})

Implementation

const DecoratedScrollView({
  super.key,
  this.scrollController,
  this.padding,
  required this.child,
});