operator - method

  1. @override
Uint256 operator -(
  1. covariant Uint256 other
)
override

Subtracts other from this Uint256.

  • other: The Uint256 to subtract.

Returns a new Uint256 representing the result of the subtraction.

Implementation

@override
Uint256 operator -(Uint256 other) {
  return Uint256(_value - other._value);
}