InputAppEvent constructor

const InputAppEvent({
  1. required double time,
  2. required String type,
  3. required int peer,
  4. required JSONValueBase data,
})

Input App Event constructor.

Implementation

const InputAppEvent({
  required this.time,
  required this.type,
  required this.peer,
  required this.data,
}) : super._();