writeUint64 method

dynamic writeUint64(
  1. BigInt b
)

Implementation

writeUint64(BigInt b) {
  var b1 = (b ~/ d32).toInt();
  var b2 = (b % d32).toInt();
  writeUint32(b1);
  writeUint32(b2);
}