text static method
Implementation
static Raw text(
String text, {
bool newline = PsdkConst.defEnableNewline,
String? charset,
}) {
var raw = Raw();
raw._mode = RawMode.text;
raw._text = text;
raw._charset = charset;
raw._newline = newline;
return raw;
}