NearBlockChainData constructor
NearBlockChainData({})
Implementation
NearBlockChainData({
this.accountId,
//Standard near ed25519 public key
required String publicKey,
//Base 64 encoded
required String privateKey,
required DerivationPath derivationPath,
required String passphrase,
String identifier = BlockChains.near,
}) : super(
identifier: identifier,
publicKey: publicKey,
privateKey: privateKey,
derivationPath: derivationPath,
passphrase: passphrase,
);