TableLayoutResult constructor

TableLayoutResult({
  1. required List<double> columnWidths,
  2. required List<double> rowHeights,
  3. required double remainingWidth,
  4. required double remainingHeight,
  5. required double remainingLooseWidth,
  6. required double remainingLooseHeight,
  7. required bool hasTightFlexWidth,
  8. required bool hasTightFlexHeight,
})

Implementation

TableLayoutResult({
  required this.columnWidths,
  required this.rowHeights,
  required this.remainingWidth,
  required this.remainingHeight,
  required this.remainingLooseWidth,
  required this.remainingLooseHeight,
  required this.hasTightFlexWidth,
  required this.hasTightFlexHeight,
});