InflowModel constructor

InflowModel({
  1. String? type,
  2. double? incomeAmount,
  3. double? paymentDayOfMonth,
  4. String? transactionName,
  5. String? statementDayOfMonth,
})

Implementation

InflowModel({
  this.type,
  this.incomeAmount,
  this.paymentDayOfMonth,
  this.transactionName,
  this.statementDayOfMonth,
});