ForgeColumn constructor

ForgeColumn({
  1. required String title,
  2. int size = 1,
  3. bool sortable = false,
  4. TextStyle textStyle = const TextStyle(fontWeight: FontWeight.bold),
  5. Color backgroundColor = Colors.white,
  6. TextAlign align = TextAlign.left,
})

Implementation

ForgeColumn({
  required this.title,
  this.size = 1,
  this.sortable = false,
  this.textStyle = const TextStyle(fontWeight: FontWeight.bold),
  this.backgroundColor = Colors.white,
  this.align = TextAlign.left,
});