toggleTodoListCommand top-level property

CommandShortcutEvent toggleTodoListCommand
final

Arrow down key events.

  • support
    • desktop
    • web

Implementation

// toggle the todo list
final CommandShortcutEvent toggleTodoListCommand = CommandShortcutEvent(
  key: 'toggle the todo list',
  getDescription: () => AppFlowyEditorL10n.current.cmdToggleTodoList,
  command: 'ctrl+enter',
  macOSCommand: 'cmd+enter',
  handler: _toggleTodoListCommandHandler,
);