SlotId constructor
SlotId({
- Int64? slot,
- BlockId? blockId,
Implementation
factory SlotId({
$fixnum.Int64? slot,
$6.BlockId? blockId,
}) {
final $result = create();
if (slot != null) {
$result.slot = slot;
}
if (blockId != null) {
$result.blockId = blockId;
}
return $result;
}