AdwClamp.scrollable constructor

const AdwClamp.scrollable({
  1. Key? key,
  2. required Widget child,
  3. bool center = true,
  4. ScrollController? controller,
  5. double maximumSize = 580,
  6. EdgeInsets padding = EdgeInsets.zero,
  7. EdgeInsets margin = const EdgeInsets.all(14),
})

Implementation

const AdwClamp.scrollable({
  Key? key,
  required this.child,
  this.center = true,
  this.controller,
  this.maximumSize = 580,
  this.padding = EdgeInsets.zero,
  this.margin = const EdgeInsets.all(14),
})  : isScrollable = true,
      super(key: key);