printToConsole method

Future<void> printToConsole(
  1. String report
)

Reports a message about the demo to the benchmark server.

Implementation

Future<void> printToConsole(String report) async {
  _checkNotManualMode();
  await _requestXhr(
    '/print-to-console',
    method: 'POST',
    mimeType: 'text/plain',
    sendData: report,
  );
}