withText static method
Implementation
static CommandClause withText(String command, {String? charset}) {
return CommandClause(
ClauseType.text,
command,
charset ?? PsdkConst.defCharset,
null,
);
}
static CommandClause withText(String command, {String? charset}) {
return CommandClause(
ClauseType.text,
command,
charset ?? PsdkConst.defCharset,
null,
);
}