Wallet.fromJson constructor

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

Implementation

Wallet.fromJson(Map<String, dynamic> json) {
  balance =
      json['balance'] != null ? new Balance.fromJson(json['balance']) : null;
  currency = json['currency'];
}