Keypair.fromSeedSync constructor
Keypair.fromSeedSync(
- Uint8List seed
Creates a Keypair from a 32-byte
seed
.
Implementation
factory Keypair.fromSeedSync(final Uint8List seed) =>
Keypair(nacl.sign.keypair.fromSeedSync(seed));