VoicebotLauncher constructor

const VoicebotLauncher({
  1. required VoicebotClient client,
  2. SessionConfig config = const SessionConfig(),
  3. VoicebotTheme? theme,
  4. void onClientReady(
    1. VoicebotClient client
    )?,
  5. void onSessionStarted(
    1. VoicebotSession session
    )?,
  6. bool disposeClientOnUnmount = true,
  7. Widget? child,
  8. Key? key,
})

Implementation

const VoicebotLauncher({
  required this.client,
  this.config = const SessionConfig(),
  this.theme,
  this.onClientReady,
  this.onSessionStarted,
  this.disposeClientOnUnmount = true,
  this.child,
  super.key,
});