WalletData.fromJson constructor
Implementation
WalletData.fromJson(Map<String, dynamic> json) {
wallet_id = json["wallet_id"];
type = json["type"];
sandbox = json["sandbox"];
batch_data = WalletBatchData.fromJson(json["batch_data"]);
card_code = json["card_code"];
}