updatePlan method

Future<void> updatePlan(
  1. String content
)

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),
  );
}