OrderPetMapModel constructor
OrderPetMapModel({
- String? CreatedAt,
- String? id,
- required String orderID,
- required String petID,
- required String sellerID,
- String? status,
- String? estimatedDeliveryDate,
- String? actualDeliveryDate,
- required String pickupOTP,
- required String deliveryOTP,
- String? petConfirmationTimestamp,
- String? petReadyForPickupTimestamp,
- String? petCancellationRequestTimestamp,
- String? petCancellationTimestamp,
- String? petReturnRequestedTimestamp,
- String? petReturnRequestCancelledTimestamp,
- String? petReturnedTimestamp,
- String? deliveryAgentID,
- String? deliveryAgentAllocationTimestamp,
- String? deliveryAgentAssignmentMethod,
- String? deliveryAgentAssignmentRule,
- String? petPickupTimestamp,
- String? petDeliveryTimestamp,
- 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,
});