BytesUtils class

Constructors

BytesUtils()

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

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

Static Methods

arraycopy(dynamic src, dynamic startPos, dynamic dest, dynamic destPos, dynamic len) → dynamic
base64ToBytes(String base64Str) List<int>?
bigIntToBytes(BigInt b, int numBytes) List<int>
bigIntToBytesSigned(BigInt b, int numBytes) List<int>
bytesToBase64(List<int> bytes) String
bytesToBigInt(List<int> bb) BigInt
bytesToHex(List<int> bytes) String
decodeBigInt(List<int> bytes) BigInt
encodeBigInt(BigInt number) List<int>
intToBytes(int integer) List<int>
leftPadBytes(List<int> bytes, int size) List<int>
longToBytes(dynamic longValue) List<int>
merge(List<List<int>?> arrays) List<int>