addValue method

num addValue(
  1. num other
)

Adds two numbers. This is equivalent to the + operator. Returns the sum of this and other.

Implementation

num addValue(num other) => add(this, other);