debug static method

void debug(
  1. String debugString
)

Debug Channel

Implementation

static void debug(String debugString) async {
  await Z.sendIO({
    "command": ioCommands.printDebug,
    "message": debugString
  });
}