Wallet.fromJson constructor

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

Implementation

Wallet.fromJson(Map<String, dynamic> json) {
  walletId = json["wallet_id"];
  type = json["type"];
  d = BioCard.fromJson(json["d"]);
  walletType = json["wallet_type"];
}