Bip32 constructor

Bip32(
  1. Uint8List? privateKey,
  2. Uint8List? _publicKey,
  3. Uint8List chainCode,
  4. NetworkType network, {
  5. int depth = 0,
  6. int index = 0,
  7. int parentFingerprint = 0x00000000,
})

Internal re-implementation of https://pub.dev/packages/bip32 waiting for null-safety update.

Implementation

Bip32(
  this.privateKey,
  this._publicKey,
  this.chainCode,
  this.network, {
  this.depth = 0,
  this.index = 0,
  this.parentFingerprint = 0x00000000,
});