KeyRecording constructor

const KeyRecording(
  1. LogicalKeyboardKey? logicalKeyId,
  2. String? description,
  3. String? linux,
  4. int? windows,
  5. int? mac,
  6. KeyEventType keyEventType,
  7. Duration delay,
)

Implementation

const KeyRecording(
  super.logicalKeyId,
  super.description,
  super.linux,
  super.windows,
  super.mac,
  this.keyEventType,
  this.delay,
);