MatrixLayoutDelegate constructor

MatrixLayoutDelegate({
  1. required int rows,
  2. required int cols,
  3. required double ruleThickness,
  4. required double arrayskip,
  5. required List<double> rowSpacings,
  6. required List<MatrixSeparatorStyle> hLines,
  7. required bool hskipBeforeAndAfter,
  8. required double arraycolsep,
  9. required List<MatrixSeparatorStyle> vLines,
  10. required List<MatrixColumnAlign> columnAligns,
})

Implementation

MatrixLayoutDelegate({
  required this.rows,
  required this.cols,
  required this.ruleThickness,
  required this.arrayskip,
  required this.rowSpacings,
  required this.hLines,
  required this.hskipBeforeAndAfter,
  required this.arraycolsep,
  required this.vLines,
  required this.columnAligns,
})  : vLinePos = List.filled(cols + 1, 0.0, growable: false),
      hLinePos = List.filled(rows + 1, 0.0, growable: false);