fromSecp static method

KeyId fromSecp(
  1. SecpKeyId secp_id
)

Implementation

static KeyId fromSecp(SecpKeyId secp_id) {
  final id = DartApi.native.keyId.fromSecp(secp_id.ffi);
  return KeyId(id, true);
}