SessionEntityType constructor

SessionEntityType({
  1. String? name,
  2. EntityOverrideMode? entityOverrideMode,
  3. List<Entity>? entities,
})

A session represents a conversation between a Dialogflow agent and an end-user.

You can create special entities, called session entities, during a session. Session entities can extend or replace custom entity types and only exist during the session that they were created for.

All session data, including session entities, is stored by Dialogflow for 20 minutes.

Implementation

SessionEntityType({
  this.name,
  this.entityOverrideMode,
  this.entities,
});