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