TextBoxConfig constructor

TextBoxConfig({
  1. double maxWidth = 200.0,
  2. EdgeInsets margins = const EdgeInsets.all(8.0),
  3. double timePerChar = 0.0,
  4. double dismissDelay = 0.0,
  5. bool growingBox = false,
})

Implementation

TextBoxConfig({
  this.maxWidth = 200.0,
  this.margins = const EdgeInsets.all(8.0),
  this.timePerChar = 0.0,
  this.dismissDelay = 0.0,
  this.growingBox = false,
});