UParkingShiftResponse constructor

UParkingShiftResponse({
  1. required String id,
  2. required DateTime createdAt,
  3. required List<int> tags,
  4. required String parkingId,
  5. required DateTime startDate,
  6. required double cashTotal,
  7. required double cardTotal,
  8. required double ipgTotal,
  9. required double countedCash,
  10. required int entryCount,
  11. required int exitCount,
  12. DateTime? endDate,
  13. String? creatorId,
  14. UUserResponse? creator,
  15. double total = 0,
  16. UBaseJson? jsonData,
  17. List<String> adminUserIds = const <String>[],
})

Implementation

UParkingShiftResponse({
  required this.id,
  required this.createdAt,
  required this.tags,
  required this.parkingId,
  required this.startDate,
  required this.cashTotal,
  required this.cardTotal,
  required this.ipgTotal,
  required this.countedCash,
  required this.entryCount,
  required this.exitCount,
  this.endDate,
  this.creatorId,
  this.creator,
  this.total = 0,
  this.jsonData,
  this.adminUserIds = const <String>[],
});