MScrollOnExpand constructor

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

Implementation

const MScrollOnExpand({
  super.key,
  required this.child,
  this.scrollOnExpand = true,
  this.scrollOnCollapse = true,
  this.theme,
});