addUint16 method
Add the field with the given 32-bit unsigned integer value. The field
is not added if the value is equal to def.
Implementation
void addUint16(int field, int? value, [int? def]) {
_ensureCurrentVTable();
if (value != null && value != def) {
_prepare(_sizeofUint16, 1);
_trackField(field);
_setUint16AtTail(_buf, _tail, value);
}
}