asin method Null safety
Implementation
Complex asin() =>
const Complex(0, -1) *
(const Complex(0, 1) * this + (const Complex(1, 0) - this * this).sqrt())
.ln();
Complex asin() =>
const Complex(0, -1) *
(const Complex(0, 1) * this + (const Complex(1, 0) - this * this).sqrt())
.ln();