acos method Null safety
Implementation
Complex acos() =>
    const Complex(dart.pi / 2, 0) +
    const Complex(0, 1) *
        (const Complex(0, 1) * this +
                (const Complex(1, 0) - this * this).sqrt())
            .ln();
Complex acos() =>
    const Complex(dart.pi / 2, 0) +
    const Complex(0, 1) *
        (const Complex(0, 1) * this +
                (const Complex(1, 0) - this * this).sqrt())
            .ln();