toInt method

  1. @override
int toInt()
override

Converts this Uint256 to an integer.

Returns an integer representation of the Uint256 value.

Implementation

@override
int toInt() {
  return _value.toInt();
}