addTags static method

Future<void> addTags({
  1. List<String>? tags,
})

Utility to optionaly add tags to the conversation. This can be set to a List of strings which will then appear to the agent in the chat.

Implementation

static Future<void> addTags({List<String>? tags}) async {
  await _channel.invokeMethod<void>('addTags', {
    'tags': tags,
  });
}