PolarComplex constructor

const PolarComplex({
  1. required double r,
  2. required double phiRadians,
  3. required double phiDegrees,
})

The angle r is required both in radians (phiRadians) and degrees. (phiDegrees).

Implementation

const PolarComplex(
    {required this.r, required this.phiRadians, required this.phiDegrees});