copyWith method

EquationArrayNode copyWith({
  1. double? arrayStretch,
  2. bool? addJot,
  3. List<EquationRowNode>? body,
  4. List<MatrixSeparatorStyle>? hlines,
  5. List<Measurement>? rowSpacings,
})

Implementation

EquationArrayNode copyWith({
  double? arrayStretch,
  bool? addJot,
  List<EquationRowNode>? body,
  List<MatrixSeparatorStyle>? hlines,
  List<Measurement>? rowSpacings,
}) =>
    EquationArrayNode(
      arrayStretch: arrayStretch ?? this.arrayStretch,
      addJot: addJot ?? this.addJot,
      body: body ?? this.body,
      hlines: hlines ?? this.hlines,
      rowSpacings: rowSpacings ?? this.rowSpacings,
    );