CharacterActivator constructor

const CharacterActivator(
  1. String character, {
  2. bool alt = false,
  3. bool control = false,
  4. bool meta = false,
  5. bool includeRepeats = true,
})

Triggered when the key event yields the given character.

Implementation

const CharacterActivator(this.character, {
  this.alt = false,
  this.control = false,
  this.meta = false,
  this.includeRepeats = true,
});