ScrollOnExpand constructor

ScrollOnExpand({
  1. Key? key,
  2. required Widget child,
  3. bool scrollOnExpand = true,
  4. bool scrollOnCollapse = true,
  5. ExpandableThemeData? theme,
})

Implementation

ScrollOnExpand({
  Key? key,
  required this.child,
  this.scrollOnExpand = true,
  this.scrollOnCollapse = true,
  this.theme,
}) : super(key: key);