Complex.polar constructor
Implementation
factory Complex.polar(double modulus, double theta) {
final re = modulus * math.cos(theta);
final im = modulus * math.sin(theta);
return Complex._service(re, im, modulus, theta, calculateTheta2(theta));
}