copyWith method
EquationArrayNode
copyWith({
- double? arrayStretch,
- bool? addJot,
- List<
EquationRowNode> ? body, - List<
MatrixSeparatorStyle> ? hlines, - 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,
);