strinifyPrivateKey static method
return a hex string version privateKey
Implementation
static String strinifyPrivateKey(ECPrivateKey privateKey) {
assert(privateKey.d != null);
return privateKey.d!.toRadixString(16);
}
return a hex string version privateKey
static String strinifyPrivateKey(ECPrivateKey privateKey) {
assert(privateKey.d != null);
return privateKey.d!.toRadixString(16);
}