MuseCell constructor

const MuseCell({
  1. Key? key,
  2. IconData? icon,
  3. double? iconSize,
  4. double? rightIconSize,
  5. Color? iconColor,
  6. Color? rightIconColor,
  7. CellSize size = CellSize.normal,
  8. String? title,
  9. String? value,
  10. String? label,
  11. Widget? slotIcon,
  12. Widget? slotRightIcon,
  13. Widget? slotTitle,
  14. Widget? slotValue,
  15. Widget? slotLabel,
  16. bool center = false,
  17. bool clickable = false,
  18. bool isLink = false,
  19. bool border = true,
  20. bool required = false,
  21. ArrowDirection arrowDirection = ArrowDirection.right,
  22. VoidCallback? click,
})

Implementation

const MuseCell({
  super.key,
  this.icon,
  this.iconSize,
  this.rightIconSize,
  this.iconColor,
  this.rightIconColor,
  this.size = CellSize.normal,
  this.title,
  this.value,
  this.label,
  this.slotIcon,
  this.slotRightIcon,
  this.slotTitle,
  this.slotValue,
  this.slotLabel,
  this.center = false,
  this.clickable = false,
  this.isLink = false,
  this.border = true,
  this.required = false,
  this.arrowDirection = ArrowDirection.right,
  this.click,
});