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;
}