Checksum class abstract

表示数据校验和的接口。

Implementers

Constructors

Checksum()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

getBinaryValue() String
Returns the current checksum binary value.
getHexValue() String
Returns the current checksum hex value.
getValue() int
Returns the current checksum value.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
reset() → void
Resets the checksum to its initial value.
toString() String
A string representation of this object.
inherited
update(Uint8List ints, [int off = 0, int? len]) → void
使用指定的字节数组更新当前校验和
updateInt(int b) → void
使用指定字节更新当前校验和
updateList(List<int> ints, [int off = 0, int? len]) → void
使用指定的字节数组更新当前校验和

Operators

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