fromByteArray static method

Future<Keypair> fromByteArray(
  1. List<int> bytes
)

Implementation

static Future<Keypair> fromByteArray(List<int> bytes) async {
  return _fromEd25519HDKeyPair(await _fromEd25519ByteArray(bytes));
}