Cell constructor
Cell({})
Implementation
factory Cell({
OutPoint? outPoint,
$fixnum.Int64? capacity,
Script? lock,
Script? type,
$core.List<$core.int>? data,
$fixnum.Int64? blockNumber,
$core.List<$core.int>? blockHash,
$fixnum.Int64? since,
$core.List<$core.int>? inputType,
$core.List<$core.int>? outputType,
}) {
final result = create();
if (outPoint != null) result.outPoint = outPoint;
if (capacity != null) result.capacity = capacity;
if (lock != null) result.lock = lock;
if (type != null) result.type = type;
if (data != null) result.data = data;
if (blockNumber != null) result.blockNumber = blockNumber;
if (blockHash != null) result.blockHash = blockHash;
if (since != null) result.since = since;
if (inputType != null) result.inputType = inputType;
if (outputType != null) result.outputType = outputType;
return result;
}