UParkingShiftResponse constructor
UParkingShiftResponse({
- required String id,
- required DateTime createdAt,
- required List<
int> tags, - required String parkingId,
- required DateTime startDate,
- required double cashTotal,
- required double cardTotal,
- required double ipgTotal,
- required double countedCash,
- required int entryCount,
- required int exitCount,
- DateTime? endDate,
- String? creatorId,
- UUserResponse? creator,
- double total = 0,
- UBaseJson? jsonData,
- 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>[],
});