VanCell constructor
const
VanCell({
- Key? key,
- String title = '',
- Widget? titleSlot,
- String value = '',
- Widget? valueSlot,
- String label = '',
- CellSize size = CellSize.normal,
- IconData? icon,
- bool border = true,
- bool clickable = false,
- bool isLink = false,
- ArrowDirection arrowDirection = ArrowDirection.right,
- bool required = false,
- bool center = false,
- bool last = false,
- 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);