SmartExpand constructor

const SmartExpand({
  1. Key? key,
  2. required Widget child,
  3. bool disableExpand = true,
  4. int flex = 1,
})

Implementation

const SmartExpand({
  super.key,
  required this.child,
  this.disableExpand = true,
  this.flex = 1,
});