BasicWallet.fromJson constructor

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

Implementation

BasicWallet.fromJson(Map<String, dynamic> json)
    : hexPublicKey = HexPublicKey(json['hexPublicKey']),
      wif = Wif(json['wif']),
      address = Address(json['address']);