NostrKeyPairs constructor

NostrKeyPairs({
  1. required String private,
})

This class is responsible for generating, handling and signing keys. It is used by the NostrClient to sign messages.

Implementation

factory NostrKeyPairs({
  required String private,
}) {
  return NostrKeyPairs._(private: private);
}