Server constructor

Server({
  1. required String address,
  2. int? latency,
  3. String? location,
  4. bool isPreferred = false,
  5. required String config,
})

Implementation

Server({
  required this.address,
  this.latency,
  this.location,
  this.isPreferred = false,
  required this.config,
});