Endpoint constructor

Endpoint({
  1. String? hespSrc,
  2. String? hlsSrc,
  3. String? cdn,
  4. String? adSrc,
  5. required double weight,
  6. required int priority,
})

Implementation

Endpoint({
  this.hespSrc,
  this.hlsSrc,
  this.cdn,
  this.adSrc,
  required this.weight,
  required this.priority,
});