fromSeed static method

Future<Keypair> fromSeed(
  1. Uint8List seed
)

Creates a Keypair from a 32-byte seed.

Implementation

static Future<Keypair> fromSeed(final Uint8List seed) =>
    compute(Keypair.fromSeedSync, seed);