Complex constructor

Complex({
  1. double real = 0,
  2. double imaginary = 0,
})

Implementation

Complex({this.real = 0, this.imaginary = 0});