fromKeystore static method

Wallet fromKeystore(
  1. String keyStore,
  2. String password
)

Generate Wallet from keyStore keyStore is a jsonString

Implementation

static Wallet fromKeystore(String keyStore, String password) {
  var priv = Keystore.decrypt(keyStore, password);
  return Wallet(priv);

}