SettlementReport constructor

SettlementReport({
  1. String? endDate,
  2. String? kind,
  3. Price? previousBalance,
  4. String? settlementId,
  5. String? startDate,
  6. Price? transferAmount,
  7. String? transferDate,
  8. List<String>? transferIds,
})

Implementation

SettlementReport({
  this.endDate,
  this.kind,
  this.previousBalance,
  this.settlementId,
  this.startDate,
  this.transferAmount,
  this.transferDate,
  this.transferIds,
});