ExtendedKey constructor

ExtendedKey({
  1. required int p2pkh,
  2. required int p2sh,
  3. int? p2wpkh,
  4. int? p2wpkhInP2sh,
  5. int? p2wsh,
  6. int? p2wshInP2sh,
})

Implementation

ExtendedKey({
  required this.p2pkh,
  required this.p2sh,
  this.p2wpkh,
  this.p2wpkhInP2sh,
  this.p2wsh,
  this.p2wshInP2sh,
});