InflowModel constructor

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

Implementation

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