VanCell constructor

const VanCell({
  1. Key? key,
  2. String title = '',
  3. Widget? titleSlot,
  4. String value = '',
  5. Widget? valueSlot,
  6. String label = '',
  7. CellSize size = CellSize.normal,
  8. IconData? icon,
  9. bool border = true,
  10. bool clickable = false,
  11. bool isLink = false,
  12. ArrowDirection arrowDirection = ArrowDirection.right,
  13. bool required = false,
  14. bool center = false,
  15. bool last = false,
  16. VoidCallback? onPressed,
})

Implementation

const VanCell({
  Key? key,
  this.title = '',
  this.titleSlot,
  this.value = '',
  this.valueSlot,
  this.label = '',
  this.size = CellSize.normal,
  this.icon,
  this.border = true,
  this.clickable = false,
  this.isLink = false,
  this.arrowDirection = ArrowDirection.right,
  this.required = false,
  this.center = false,
  this.last = false,
  this.onPressed,
}) : super(key: key);