commandShortcutEvents property

List<CommandShortcutEvent> commandShortcutEvents
final

Command event handlers

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

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

AppFlowyEditor(
  commandShortcutEvents: [
    ...standardCommandShortcutEvents,
    [YOUR_SHORTCUT_EVENT],
  ],
);

Implementation

final List<CommandShortcutEvent> commandShortcutEvents;