SaveApplicationLogEvent constructor

const SaveApplicationLogEvent({
  1. required String type,
  2. required int chatId,
  3. required JsonValue data,
})

Saves application log event on the server. Can be called before authorization

Implementation

const SaveApplicationLogEvent({
  required this.type,
  required this.chatId,
  required this.data,
});