Bip32SigningKey.fromKeyBytes constructor

Bip32SigningKey.fromKeyBytes(
  1. Uint8List secret,
  2. Uint8List chainCode, {
  3. int depth = 0,
})

Implementation

Bip32SigningKey.fromKeyBytes(Uint8List secret, Uint8List chainCode,
    {int depth = 0})
    : this.fromValidBytes([...secret, ...chainCode].toUint8List(),
          depth: depth);