CellDep constructor
Implementation
factory CellDep({
$core.String? depType,
OutPoint? outPoint,
}) {
final $result = create();
if (depType != null) {
$result.depType = depType;
}
if (outPoint != null) {
$result.outPoint = outPoint;
}
return $result;
}