KeyRepeatEvent constructor
- required PhysicalKeyboardKey physicalKey,
- required LogicalKeyboardKey logicalKey,
- String? character,
- required Duration timeStamp,
- KeyEventDeviceType deviceType = ui.KeyEventDeviceType.keyboard,
Creates a key event that represents the user pressing a key.
Implementation
const KeyRepeatEvent({
required super.physicalKey,
required super.logicalKey,
super.character,
required super.timeStamp,
super.deviceType,
});