UpdateNewCustomEvent constructor

const UpdateNewCustomEvent({
  1. required String event,
  2. dynamic extra,
  3. int? clientId,
})

A new incoming event; for bots only

Implementation

const UpdateNewCustomEvent({
  required this.event,
  this.extra,
  this.clientId,
});