ChatEventDescriptionChanged constructor

ChatEventDescriptionChanged({
  1. String? extra,
  2. int? client_id,
  3. string? old_description,
  4. string? new_description,
})

Implementation

ChatEventDescriptionChanged({
  super.extra,
  super.client_id,
  this.old_description,
  this.new_description,
});