LastMileComplete constructor

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