fromSecp static method

KeyId fromSecp(
  1. SecpKeyId secpId
)

Implementation

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