Details constructor

Details({
  1. int? frequency,
  2. String? frequencyType,
  3. double? transactionAmount,
  4. String? currencyId,
  5. DateTime? endDate,
})

Implementation

Details({
  this.frequency,
  this.frequencyType,
  this.transactionAmount,
  this.currencyId,
  this.endDate,
});