operator - method

  1. @override
Int32 operator -(
  1. dynamic other
)
override

Subtraction operator.

Implementation

@override
Int32 operator -(other) {
  return Int32(_i - _toInt(other));
}