MuseCellGroup constructor

const MuseCellGroup({
  1. Key? key,
  2. List<Widget> children = const <Widget>[],
  3. bool isCard = false,
  4. bool border = true,
  5. double? radius,
  6. String? title,
  7. EdgeInsetsGeometry titlePadding = const EdgeInsets.symmetric(vertical: 5, horizontal: 16),
  8. Widget? slotTitle,
})

Implementation

const MuseCellGroup({
  super.key,
  this.children = const <Widget>[],
  this.isCard = false,
  this.border = true,
  this.radius,
  this.title,
  this.titlePadding = const EdgeInsets.symmetric(vertical: 5, horizontal: 16),
  this.slotTitle,
});