copyWith method

AccentUnderNode copyWith({
  1. EquationRowNode? base,
  2. String? label,
})

Implementation

AccentUnderNode copyWith({
  EquationRowNode? base,
  String? label,
}) =>
    AccentUnderNode(
      base: base ?? this.base,
      label: label ?? this.label,
    );