serializedSize property
The on-wire size of this section, including the varint length prefix.
Implementation
int get serializedSize {
final cidBytes = cid.toBytes();
final payloadLength = cidBytes.length + bytes.length;
return _varintLength(payloadLength) + payloadLength;
}