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