OverlayConfig constructor

const OverlayConfig({
  1. bool autoShow = true,
  2. int autoHideDuration = 3000,
  3. bool enableVibration = false,
  4. String? bubbleColor,
  5. double bubbleSize = 56.0,
  6. double bubbleOpacity = 0.9,
  7. bool enableSpellCheck = true,
  8. bool enableGrammarCheck = true,
  9. int initialX = 100,
  10. int initialY = 200,
})

Implementation

const OverlayConfig({
  this.autoShow = true,
  this.autoHideDuration = 3000,
  this.enableVibration = false,
  this.bubbleColor,
  this.bubbleSize = 56.0,
  this.bubbleOpacity = 0.9,
  this.enableSpellCheck = true,
  this.enableGrammarCheck = true,
  this.initialX = 100,
  this.initialY = 200,
});