ChatLocation constructor

ChatLocation({
  1. String? extra,
  2. int? client_id,
  3. Location? location,
  4. string? address,
})

Implementation

ChatLocation({
  super.extra,
  super.client_id,
  this.location,
  this.address,
});