WebEventSigner constructor

WebEventSigner({
  1. required String? privateKey,
  2. required String publicKey,
})

Implementation

WebEventSigner({required this.privateKey, required this.publicKey}) {
  throw UnsupportedError(
    'WebEventSigner is only available on web platforms. '
    'Use Bip340EventSigner for native platforms.',
  );
}