TapEvent constructor

const TapEvent({
  1. required DateTime time,
  2. String? deviceName,
  3. int keyId = 0,
})

Implementation

const TapEvent({
  required this.time,
  this.deviceName,
  this.keyId = 0,
});