Uint class

Represent a generic unsigned integer value which could be either Uint8, Uint16, Uint32 or Uint64.

Constructors

Uint.new(int value)
Creates a Uint from a provided integer value. This constructor will fail if the integer value is negative.

Properties

hashCode int
The hash code for this object.
no setterinherited
list Uint8List
latefinal
props List<Object?>
The list of properties that will be used to determine whether two instances are equal.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stringify bool?
If set to true, the toString method will be overridden to output this instance's props.
no setterinherited
toUint8List Uint8List
no setter
type UintType
latefinal
value int
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

maxUint8Value → const int
maxUint16Value → const int
maxUint32Value → const int
minUint8Value → const int
minUint16Value → const int
minUint32Value → const int
minUint64Value → const int