Creates a nonce from three random integers.
static Nonce fromThreeInts(int a, int b, int c) { return Nonce(Uint32List.fromList([a, b, c])); }