SwipBoxServicePointId constructor

SwipBoxServicePointId({
  1. int? spId,
})

Implementation

factory SwipBoxServicePointId({
  $core.int? spId,
}) {
  final result = create();
  if (spId != null) result.spId = spId;
  return result;
}