HdWallet.fromHexEntropy constructor

HdWallet.fromHexEntropy(
  1. String hexEntropy, {
  2. String password = '',
})

Implementation

factory HdWallet.fromHexEntropy(String hexEntropy, {String password = ''}) =>
    HdWallet.fromEntropy(
        entropy: Uint8List.fromList(HexCoder.instance.decode(hexEntropy)),
        password: password);