insert method
Adds a new context entry to the assistant profile. This will result in an error if an entry already exists with the same id.
Implementation
Future<void> insert(
{required String title, required AiAssistantContext context}) =>
_client.mutate(AiAssistantMutateRequest.contextInsert(
profileId: _profileId,
integrationId: _integrationId,
id: _id,
title: title,
context: context));