withText static method

CommandClause withText(
  1. String command, {
  2. String? charset,
})

Implementation

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