atanh method Null safety

Complex atanh()

Implementation

Complex atanh() =>
    const Complex(0.5, 0) *
    ((const Complex(1, 0) + this).ln() - (const Complex(1, 0) - this).ln());