UParkingPlateFlagCreateParams constructor

UParkingPlateFlagCreateParams({
  1. required String parkingId,
  2. required String licencePlate,
  3. required List<int> tags,
  4. String? reason,
  5. double? amount,
  6. DateTime? fromDate,
  7. DateTime? toDate,
  8. String? spotNumber,
  9. String detail1 = "",
  10. String detail2 = "",
  11. String? id,
  12. String? creatorId,
  13. List<String>? adminUserIds,
})

Implementation

UParkingPlateFlagCreateParams({
  required this.parkingId,
  required this.licencePlate,
  required this.tags,
  this.reason,
  this.amount,
  this.fromDate,
  this.toDate,
  this.spotNumber,
  this.detail1 = "",
  this.detail2 = "",
  this.id,
  this.creatorId,
  this.adminUserIds,
});