OrderPetMapModel constructor

OrderPetMapModel({
  1. String? CreatedAt,
  2. String? id,
  3. required String orderID,
  4. required String petID,
  5. required String sellerID,
  6. String? status,
  7. String? estimatedDeliveryDate,
  8. String? actualDeliveryDate,
  9. required String pickupOTP,
  10. required String deliveryOTP,
  11. String? petConfirmationTimestamp,
  12. String? petReadyForPickupTimestamp,
  13. String? petCancellationRequestTimestamp,
  14. String? petCancellationTimestamp,
  15. String? petReturnRequestedTimestamp,
  16. String? petReturnRequestCancelledTimestamp,
  17. String? petReturnedTimestamp,
  18. String? deliveryAgentID,
  19. String? deliveryAgentAllocationTimestamp,
  20. String? deliveryAgentAssignmentMethod,
  21. String? deliveryAgentAssignmentRule,
  22. String? petPickupTimestamp,
  23. String? petDeliveryTimestamp,
  24. int? distancePerDelivery,
})

Implementation

OrderPetMapModel({
  this.CreatedAt,
  this.id,
  required this.orderID,
  required this.petID,
  required this.sellerID,
  this.status,
  this.estimatedDeliveryDate,
  this.actualDeliveryDate,
  required this.pickupOTP,
  required this.deliveryOTP,
  this.petConfirmationTimestamp,
  this.petReadyForPickupTimestamp,
  this.petCancellationRequestTimestamp,
  this.petCancellationTimestamp,
  this.petReturnRequestedTimestamp,
  this.petReturnRequestCancelledTimestamp,
  this.petReturnedTimestamp,
  this.deliveryAgentID,
  this.deliveryAgentAllocationTimestamp,
  this.deliveryAgentAssignmentMethod,
  this.deliveryAgentAssignmentRule,
  this.petPickupTimestamp,
  this.petDeliveryTimestamp,
  this.distancePerDelivery,
});