writeString method

int writeString(
  1. String s
)

Implementation

int writeString(String s) {
  _buf.write(s);
  return s.length;
}