characterShortcutEvents property

List<CharacterShortcutEvent> characterShortcutEvents
final

Character event handlers

Pass the standardCharacterShortcutEvents as well if you simply want to extend it with a new one.

For example, if you want to add a new character shortcut event:

AppFlowyEditor(
 characterShortcutEvents: [
  ...standardCharacterShortcutEvents,
  [YOUR_SHORTCUT_EVENT],
 ],
);

Implementation

final List<CharacterShortcutEvent> characterShortcutEvents;