writeObjectStart method

void writeObjectStart()

Start a new JSON object.

Implementation

@pragma('vm:prefer-inline')
void writeObjectStart() {
  _writeByte(tokenLBrace);
}