HdWallet.fromEntropy constructor

HdWallet.fromEntropy({
  1. required Uint8List entropy,
  2. String password = '',
})

Implementation

HdWallet.fromEntropy({required this.entropy, this.password = ''})
    : _rootSigningKey = _bip32signingKey(entropy, password: password);