HistoricalBalance constructor

HistoricalBalance({
  1. String? date,
  2. double? current,
  3. String? isoCurrencyCode,
  4. String? unofficialCurrencyCode,
})

Implementation

HistoricalBalance({
  this.date,
  this.current,
  this.isoCurrencyCode,
  this.unofficialCurrencyCode,
});