Complex constructor

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

Implementation

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