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