exp method

Complex exp()

Implementation

Complex exp() {
  final r = math.exp(_re);
  return Complex.polar(r, _im);
}