operator + method

double operator +(
  1. num other
)

Returns the sum of this value and other.

Implementation

double operator +(num other) => value + other;