operator / method
- covariant Uint256 other
override
Divides this Uint256 by other
.
other
: The Uint256 to divide by.
Returns a new Uint256 representing the result of the division.
Implementation
@override
Uint256 operator /(Uint256 other) {
return Uint256(BigInt.from(_value / other._value));
}