ExpensesModel constructor

ExpensesModel(
  1. String name,
  2. String employeeName,
  3. String status,
  4. String expenseApprover,
  5. String expenseType,
  6. double amount,
)

Implementation

ExpensesModel(
  this.name,
  this.employeeName,
  this.status,
  this.expenseApprover,
  this.expenseType,
  this.amount,
);