operator - method

I8 operator -(
  1. I8 other
)
override

Subtracts another I8 from this, wrapping around on overflow/underflow.

Implementation

I8 operator -(I8 other) => I8((value - other.value).toSigned(8));