writeUIntLE function
Implementation
Uint8List writeUIntLE(dynamic value, int byteLength) {
if (bnToBn(value) < BigInt.zero) {
throw ArgumentError.value(value, 'value', 'Cannot write negative values');
}
return writeIntLE(value, byteLength);
}