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.

Implementation

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