AhapEvent constructor

AhapEvent({
  1. required double time,
  2. required double duration,
  3. required double sharpness,
  4. required double intensity,
  5. AhapEventType type = AhapEventType.hapticEvent,
  6. AhapParameterType? parameterType,
})

Implementation

AhapEvent({
  required this.time,
  required this.duration,
  required this.sharpness,
  required this.intensity,
  this.type = AhapEventType.hapticEvent,
  this.parameterType,
});