Slip32DeserializedKey constructor
const
Slip32DeserializedKey(
- List<
int> _keyBytes, - Bip32Path path,
- Bip32ChainCode chainCode,
- 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,
);