solutions method

  1. @override
List<Complex> solutions()
override

Calculates the roots (the solutions) of the equation.

Implementation

@override
List<Complex> solutions() => [b.negate / a];