SliverScroll constructor

const SliverScroll({
  1. required List<Widget> children,
  2. String? title,
  3. TextStyle? style,
  4. IconButton? iconButton,
  5. VoidCallback? onPressed,
  6. Color? backgroundColor,
  7. Key? key,
})

Implementation

const SliverScroll({
  required this.children,
  this.title,
  this.style,
  this.iconButton,
  this.onPressed,
  this.backgroundColor,
  Key? key,
}) : super(key: key);