delete method

Future<void> delete()

Deletes an existing context entry on the assistant profile. This will result in an error if an entry has not yet been created for the current context id.

Implementation

Future<void> delete() => _client.mutate(AiAssistantMutateRequest.delete(
    profileId: _profileId, integrationId: _integrationId, id: _id));