AccountAssets constructor

AccountAssets({
  1. double? daysAvailable,
  2. List<AssetReportTransaction>? transactions,
  3. List<Owner>? owners,
  4. List<HistoricalBalance>? historicalBalances,
})

Implementation

AccountAssets({
  this.daysAvailable,
  this.transactions,
  this.owners,
  this.historicalBalances,
});