Constant.realEquation constructor

Constant.realEquation({
  1. double a = 1,
})

The only coefficient of the polynomial is represented by a double (real) number a.

Implementation

Constant.realEquation({
  double a = 1,
}) : super.realEquation([a]);