CellOutput constructor
Implementation
factory CellOutput({
$fixnum.Int64? capacity,
Script? lock,
Script? type,
}) {
final $result = create();
if (capacity != null) {
$result.capacity = capacity;
}
if (lock != null) {
$result.lock = lock;
}
if (type != null) {
$result.type = type;
}
return $result;
}