FirstMileCourierComplete constructor
FirstMileCourierComplete({
- String? lockerUid,
- String? token,
- DeliveryId? deliveryId,
- ContainerId? containerId,
Implementation
factory FirstMileCourierComplete({
$core.String? lockerUid,
$core.String? token,
$0.DeliveryId? deliveryId,
$0.ContainerId? containerId,
}) {
final result = create();
if (lockerUid != null) result.lockerUid = lockerUid;
if (token != null) result.token = token;
if (deliveryId != null) result.deliveryId = deliveryId;
if (containerId != null) result.containerId = containerId;
return result;
}