InputEvent constructor

InputEvent({
  1. String inputType = '',
  2. String data = '',
  3. bool composed = false,
})

Implementation

InputEvent({
  this.inputType = '',
  this.data = '',
  super.composed,
}) : super(EVENT_INPUT);