ShortcutOptions constructor

const ShortcutOptions({
  1. required List<List<LogicalKeyboardKey>> undo,
  2. required List<List<LogicalKeyboardKey>> redo,
  3. required List<List<LogicalKeyboardKey>> search,
  4. required List<List<LogicalKeyboardKey>> zoomIn,
  5. required List<List<LogicalKeyboardKey>> zoomOut,
  6. required List<List<LogicalKeyboardKey>> fitCameraToArea,
  7. List<List<LogicalKeyboardKey>>? deletePoint,
})

Default constructor for ShortcutOptions.

Implementation

const ShortcutOptions({
  required this.undo,
  required this.redo,
  required this.search,
  required this.zoomIn,
  required this.zoomOut,
  required this.fitCameraToArea,
  this.deletePoint,
});