writeInt method

void writeInt(
  1. int value
)
inherited

Positive and negative integers. If the value is too large to be encoded as an integer it is automatically converted to and encoded as a big num

Implementation

void writeInt(int value) {
  _writeInt(value);
  _builderHookImpl(true, value);
}