Complex constructor Null safety

const Complex(
  1. double real,
  2. double imaginary
)

Implementation

const Complex(this.real, this.imaginary);