fromWif method

Future<Account> fromWif (String wif, String pwd, { String label, ScryptParams params })

Implementation

static Future<Account> fromWif(String wif, String pwd,
    {String label, ScryptParams params}) async {
  var prikey = await PrivateKey.fromWif(wif);
  return create(pwd, prikey: prikey, label: label, params: params);
}