CuReExpandableBox constructor

const CuReExpandableBox({
  1. Key? key,
  2. required String title,
  3. required Widget child,
  4. bool filled = true,
  5. Color? color,
  6. IconData? icon,
  7. CuReShape? shape,
  8. Function? onTap,
})

Implementation

const CuReExpandableBox({
  super.key,
  required this.title,
  required this.child,
  this.filled = true,
  this.color,
  this.icon,
  this.shape,
  this.onTap,
});