Complex.cartesian constructor

Complex.cartesian(
  1. num real,
  2. num imaginary
)

Implementation

factory Complex.cartesian(num real, num imaginary) {
  return new ComplexCartesian(real, imaginary);
}