isPrivateKey static method

bool isPrivateKey(
  1. String str
)

Check if a string is a private key (nsec)

Implementation

static bool isPrivateKey(String str) {
  return isKey(Hrps.kPrivateKey, str);
}