deletePlan method

Future<void> deletePlan()

Deletes the plan.

Implementation

Future<void> deletePlan() async {
  _ensureAlive();
  await _connection.sendRequest(
    'session.plan.delete',
    {'sessionId': sessionId},
    const Duration(seconds: 5),
  );
}