RawTableLayout constructor

const RawTableLayout({
  1. Key? key,
  2. List<Widget> children = const <Widget>[],
  3. required TableSizeSupplier width,
  4. required TableSizeSupplier height,
  5. required Clip clipBehavior,
  6. CellPredicate? frozenColumn,
  7. CellPredicate? frozenRow,
  8. double? verticalOffset,
  9. double? horizontalOffset,
  10. Size? viewportSize,
})

Implementation

const RawTableLayout({
  super.key,
  super.children,
  required this.width,
  required this.height,
  required this.clipBehavior,
  this.frozenColumn,
  this.frozenRow,
  this.verticalOffset,
  this.horizontalOffset,
  this.viewportSize,
});