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