MatrixLayoutDelegate constructor
MatrixLayoutDelegate({
- required int rows,
- required int cols,
- required double ruleThickness,
- required double arrayskip,
- required List<
double> rowSpacings, - required List<
MatrixSeparatorStyle> hLines, - required bool hskipBeforeAndAfter,
- required double arraycolsep,
- required List<
MatrixSeparatorStyle> vLines, - 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);