NeoDataTableColumn constructor

const NeoDataTableColumn({
  1. required String label,
  2. int flex = 1,
  3. TextAlign textAlign = TextAlign.left,
})

Creates a NeoDataTableColumn instance.

Implementation

const NeoDataTableColumn({
  required this.label,
  this.flex = 1,
  this.textAlign = TextAlign.left,
});