appendInt method

FastBinary appendInt(
  1. int data
)

Implementation

FastBinary appendInt(int data) {
  baos.add(data);
  return this;
}