logEvent method

Future<void> logEvent(
  1. String vendor,
  2. String event
)

Post a custom event

Example:

await driver.logs.logEvent('custom', 'event');

Implementation

Future<void> logEvent(String vendor, String event) => _client.send(
    _handler.logs.buildLogEventRequest(vendor, event),
    _handler.logs.parseLogEventResponse);