minus method

num minus(
  1. num value
)

Subtracts the given value from the current number.

Implementation

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