Balance.fromJson constructor
Creates a Balance instance from a JSON map.
Implementation
factory Balance.fromJson(Map<String, dynamic> json) {
return Balance(
settled: json['settled'],
future: json['future'],
spendable: json['spendable'],
);
}