writeString method

void writeString(
  1. String str, [
  2. bool indefinite = false
])
inherited

Primitive string writer.

Implementation

void writeString(String str, [bool indefinite = false]) {
  _writeString(str, indefinite);
  _builderHookImpl(true, str);
}