todo static method

void todo([
  1. String? message
])

Implementation

static void todo([String? message]) async {
  await Z.sendIO({
    "command": ioCommands.printDebug,
    "message": 'Stopped At: 0x${Z.engine.programCounter.toRadixString(16)}\n\n'
        'Text Buffer:\n'
        '${Z.sbuff}\n'
        '${message != null ? "TODO: $message" : ""}\n'
  });

  throw Exception("Not Implemented");
}