MatrixNode constructor

MatrixNode(
  1. List<List<LatexNode>> rows, {
  2. MatrixType type = MatrixType.plain,
  3. bool isSmall = false,
  4. List<RowGap?> rowGaps = const [],
  5. String? alignment,
  6. SourceRange? sourceRange,
})

Implementation

MatrixNode(
  this.rows, {
  this.type = MatrixType.plain,
  this.isSmall = false,
  this.rowGaps = const [],
  this.alignment,
  this.sourceRange,
});