Scrolled constructor

const Scrolled({
  1. Key? key,
  2. double? initialScrollOffset,
  3. bool? keepScrollOffset,
  4. String? debugLabel,
  5. required DisposedWidgetBuilder<ScrollController> builder,
})

Implementation

const Scrolled({
  Key? key,
  this.initialScrollOffset,
  this.keepScrollOffset,
  this.debugLabel,
  required this.builder,
}) : super(key: key);