Subtracts a value from this integer.
Example:
int count = 10; count = count.sub(3); // 7
int sub(int value) => this - value;