TravelRequestModel constructor

TravelRequestModel(
  1. String name,
  2. String employeeName,
  3. String travelType,
  4. String purposeOfTravel,
  5. String expenseType,
  6. double totalAmount,
)

Implementation

TravelRequestModel(
  this.name,
  this.employeeName,
  this.travelType,
  this.purposeOfTravel,
  this.expenseType,
  this.totalAmount,
);