doImport static method

Bip32Key doImport(
  1. String key
)
override

Implementation

static Bip32Key doImport(String key) {
  try {
    return Bip32VerifyKey(str2ByteArray(key));
  } catch (e) {
    return Bip32SigningKey(str2ByteArray(key));
  }
}