Slip32DeserializedKey constructor

const Slip32DeserializedKey(
  1. List<int> _keyBytes,
  2. Bip32Path path,
  3. Bip32ChainCode chainCode,
  4. bool isPublic,
)

Constructor for creating a deserialized SLIP-32 key.

The constructor takes the raw key bytes _keyBytes, the derivation path path, the chain code chainCode, and a flag isPublic to indicate if the key is public.

Implementation

const Slip32DeserializedKey(
  this._keyBytes,
  this.path,
  this.chainCode,
  this.isPublic,
);