writeUIntLE function

Uint8List writeUIntLE(
  1. dynamic value,
  2. int byteLength
)

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);
}