Constant constructor

Constant({
  1. Complex a = const Complex.fromReal(1),
})

The only coefficient of the polynomial is represented by a Complex number a.

Implementation

Constant({
  Complex a = const Complex.fromReal(1),
}) : super([a]);