HdWallet.fromJson constructor
Implementation
HdWallet.fromJson(Map<String, dynamic> json)
: hexPrivateKey = HexPrivateKey(json['hexPrivateKey']),
hexPublicKey = HexPublicKey(json['hexPublicKey']),
wif = Wif(json['wif']),
address = Address(json['address']),
seed = json['seed'],
mnemonic = json['mnemonic'];