newKeyPairFromSeed method
Generates a new KeyPair
that uses the seed bytes.
This will throw UnsupportedError if the algorithm does not support seeds for private key generation.
Implementation
@override
Future<SimpleKeyPair> newKeyPairFromSeed(List<int> seed) async {
return await fallback.newKeyPairFromSeed(seed);
}