ChatEventLocationChanged constructor

ChatEventLocationChanged({
  1. String? extra,
  2. int? client_id,
  3. ChatLocation? old_location,
  4. ChatLocation? new_location,
})

Implementation

ChatEventLocationChanged({
  super.extra,
  super.client_id,
  this.old_location,
  this.new_location,
});