copyWith method

Quartic copyWith({
  1. Complex? a,
  2. Complex? b,
  3. Complex? c,
  4. Complex? d,
  5. Complex? e,
})

Creates a deep copy of this object and replaces (if non-null) the given values with the old ones.

Implementation

Quartic copyWith({
  Complex? a,
  Complex? b,
  Complex? c,
  Complex? d,
  Complex? e,
}) =>
    Quartic(
      a: a ?? this.a,
      b: b ?? this.b,
      c: c ?? this.c,
      d: d ?? this.d,
      e: e ?? this.e,
    );