VitTableCell constructor

const VitTableCell({
  1. Key? key,
  2. required VitTableColumn column,
  3. required Widget child,
  4. EdgeInsets? padding,
  5. bool allowExpand = true,
})

MEANT FOR INTERNAL USE ONLY.

Implementation

const VitTableCell({
  super.key,
  required this.column,
  required this.child,
  this.padding,
  this.allowExpand = true,
});