plus method

num plus(
  1. num value
)

Adds the given value to the current number.

Implementation

num plus(num value) => this + value;