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