DebtEntry constructor

DebtEntry({
  1. String? effectiveDate = '',
  2. double? governmentHoldings = 0.0,
  3. double? totalDebt = 0.0,
  4. double change = 0.0,
})

Implementation

DebtEntry({
  this.effectiveDate = '',
  this.governmentHoldings = 0.0,
  this.totalDebt = 0.0,
  this.change = 0.0,
});