setMode method
Sets the agent mode.
Implementation
Future<void> setMode(AgentMode mode) async {
_ensureAlive();
await _connection.sendRequest(
'session.mode.set',
{'sessionId': sessionId, 'mode': mode.toJsonValue()},
const Duration(seconds: 5),
);
}