pushString method

void pushString(
  1. String v
)

Append a string */

Implementation

void pushString(String v) {
  pushBytes(utf8.encode(v));
}