BuddyConfig constructor

const BuddyConfig({
  1. BuddyPersonality personality = BuddyPersonality.helpful,
  2. bool enabled = true,
  3. bool showTips = true,
  4. bool showShortcuts = true,
  5. int maxSuggestionsPerSession = 20,
})

Implementation

const BuddyConfig({
  this.personality = BuddyPersonality.helpful,
  this.enabled = true,
  this.showTips = true,
  this.showShortcuts = true,
  this.maxSuggestionsPerSession = 20,
});