minus method

int minus(
  1. int value
)

Subtracts the given value from the current integer.

Implementation

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