AccountBalance constructor

AccountBalance({
  1. double? available,
  2. double? current,
  3. double? limit,
  4. String? isoCurrencyCode,
  5. String? unofficialCurrencyCode,
  6. String? lastUpdatedDatetime,
})

Implementation

AccountBalance({
  this.available,
  this.current,
  this.limit,
  this.isoCurrencyCode,
  this.unofficialCurrencyCode,
  this.lastUpdatedDatetime,
});