HdWallet.fromJson constructor

HdWallet.fromJson(
  1. Map<String, dynamic> json
)

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'];