loadAccountFromSeed method

Future<Account> loadAccountFromSeed(
  1. List<int> seed
)

Load an existing account from an rfc8037 private key. Seed is the binary representation of the seed.

Throws UnsupportedError if seeds are unsupported.

Implementation

Future<Account> loadAccountFromSeed(List<int> seed) async {
  return Account.fromSeed(seed);
}