mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
8 lines
206 B
Dart
8 lines
206 B
Dart
import 'package:hotkey_manager/hotkey_manager.dart';
|
|
|
|
class GlobalKeyActions {
|
|
late final HotKey hotKey;
|
|
late final Function(HotKey hotKey) onKeyDown;
|
|
GlobalKeyActions(this.hotKey, this.onKeyDown);
|
|
}
|