operator << method

void operator <<(
  1. String value
)

operator that allows to append value string at the end of the file using provided UTF-8 encoding.

Implementation

void operator <<(String value) => appendStringSync(value);