deleteContext method

Future deleteContext(
  1. String id
)

Delete the execution context with the given identifier. The context id is no longer valid after this command. The server is allowed to re-use ids when they are no longer valid.

Implementation

Future deleteContext(String id) =>
    _call('execution.deleteContext', {'id': id});