TypographyEditable constructor

TypographyEditable({
  1. TypographyAutoSize? autoSize,
  2. bool editing = false,
  3. Widget? icon,
  4. int? maxLength,
  5. Widget? tooltip,
  6. void onCancel()?,
  7. void onChange()?,
  8. void onEnd()?,
  9. void onStart()?,
  10. TypographyEditableTriggerType triggerType = TypographyEditableTriggerType.icon,
  11. Widget? enterIcon,
})

Implementation

TypographyEditable({
  this.autoSize,
  this.editing = false,
  this.icon,
  this.maxLength,
  this.tooltip,
  this.onCancel,
  this.onChange,
  this.onEnd,
  this.onStart,
  this.triggerType = TypographyEditableTriggerType.icon,
  this.enterIcon,
});