sub method

int sub(
  1. int value
)

Subtracts a value from this integer.

Example:

int count = 10;
count = count.sub(3); // 7

Implementation

int sub(int value) => this - value;