updatePlan method
Updates the plan.
Implementation
Future<void> updatePlan(String content) async {
_ensureAlive();
await _connection.sendRequest(
'session.plan.update',
{'sessionId': sessionId, 'content': content},
const Duration(seconds: 5),
);
}