CallServer constructor

CallServer({
  1. String? extra,
  2. int? client_id,
  3. int64? id,
  4. string? ip_address,
  5. string? ipv6_address,
  6. int32? port,
  7. CallServerType? type,
})

Implementation

CallServer({
  super.extra,
  super.client_id,
  this.id,
  this.ip_address,
  this.ipv6_address,
  this.port,
  this.type,
});