Balance.fromJson constructor

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

Implementation

factory Balance.fromJson(Map<String, dynamic> json) {
  return Balance(
    settled: json['settled'],
    future: json['future'],
    spendable: json['spendable'],
  );
}