delete method

Future<void> delete()

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

Implementation

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