Keypair constructor

Keypair({
  1. required Ed25519HDKeyPair solanaKeypair,
  2. required String secretKey,
  3. String? mnemonic,
})

Implementation

Keypair({required Ed25519HDKeyPair solanaKeypair, required this.secretKey, this.mnemonic}) {
  _solanaKeypair = solanaKeypair;
  publicKey = _solanaKeypair.publicKey.toString();
}