FirstMileCourierComplete constructor

FirstMileCourierComplete({
  1. String? lockerUid,
  2. String? token,
  3. DeliveryId? deliveryId,
  4. 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;
}