complex constructor

const complex(
  1. double real,
  2. double imag
)

Creates a complex number with the given real and imag parts.

Implementation

const complex(this.real, this.imag);