TableStructure constructor

TableStructure({
  1. required String key,
  2. required String title,
  3. required bool isShowing,
  4. bool isDisable = false,
  5. double columnFlex = 1,
})

Implementation

TableStructure({
  required this.key,
  required this.title,
  required this.isShowing,
  this.isDisable = false,
  this.columnFlex = 1,
});