plus method

int plus(
  1. int value
)

Adds the given value to the current integer.

Implementation

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