fromThreeInts static method

Nonce fromThreeInts(
  1. int a,
  2. int b,
  3. int c
)

Creates a nonce from three random integers.

Implementation

static Nonce fromThreeInts(int a, int b, int c) {
  return Nonce(Uint32List.fromList([a, b, c]));
}