encodeSelfCapacity method
Returns an estimate of the maximum number of bytes needed to encode this value.
Implementation
@override
int encodeSelfCapacity() {
var optionsLength = optionsByteData.lengthInBytes;
while (optionsLength % 4 != 0) {
optionsLength++;
}
var n = 20;
n += optionsLength;
n += payload.encodeSelfCapacity();
return n;
}