copyWith method

AccentNode copyWith({
  1. EquationRowNode? base,
  2. String? label,
  3. bool? isStretchy,
  4. bool? isShifty,
})

Implementation

AccentNode copyWith({
  EquationRowNode? base,
  String? label,
  bool? isStretchy,
  bool? isShifty,
}) =>
    AccentNode(
      base: base ?? this.base,
      label: label ?? this.label,
      isStretchy: isStretchy ?? this.isStretchy,
      isShifty: isShifty ?? this.isShifty,
    );