Adds a value to this integer.
Example:
int count = 10; count = count.add(5); // 15
int add(int value) => this + value;