Writes int n into the buffer
n
@override void writeInt(int n) { if (n >= 0) { _writePositiveInt(n); } else { _writeNegativeInt(n); } }