HotKeyRecorder constructor

const HotKeyRecorder({
  1. Key? key,
  2. HotKey? initalHotKey,
  3. required ValueChanged<HotKey> onHotKeyRecorded,
})

Implementation

const HotKeyRecorder({
  Key? key,
  this.initalHotKey,
  required this.onHotKeyRecorded,
}) : super(key: key);