HDWallet.fromSeed constructor
HDWallet.fromSeed(
- String seed
seed is HEX string
Implementation
factory HDWallet.fromSeed(String seed) {
BIP32 bip32 = BIP32.fromSeed(HEX.decode(seed) as Uint8List);
return HDWallet(bip32,pIsMaster: true);
}