CustomTable constructor

CustomTable({
  1. double? tableHeight = 30.0,
  2. double? height,
  3. int? tableMarge,
  4. Widget? margeContent,
  5. required List tableTitle,
  6. Axis? tableAxis = Axis.vertical,
  7. List? horizontalTableContent,
  8. List? verticalTableContent,
})

Implementation

CustomTable({
  this.tableHeight: 30.0,
  this.height,
  this.tableMarge,
  this.margeContent,
  required this.tableTitle,
  this.tableAxis: Axis.vertical,
  this.horizontalTableContent,
  this.verticalTableContent,
});