CellDep constructor

CellDep({
  1. String? depType,
  2. OutPoint? outPoint,
})

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