strinifyPrivateKey static method

String strinifyPrivateKey(
  1. ECPrivateKey privateKey
)

return a hex string version privateKey

Implementation

static String strinifyPrivateKey(ECPrivateKey privateKey) {
  assert(privateKey.d != null);
  return privateKey.d!.toRadixString(16);
}