fromSeed method

Future<Ed25519Keypair> fromSeed(
  1. Uint8List seed
)

Creates a keypair from a 32-byte seed.

Throws an AssertionError if the seed is invalid.

Implementation

Future<Ed25519Keypair> fromSeed(final Uint8List seed) =>
    compute(fromSeedSync, seed);