Service constructor

Service({
  1. Map<String, String>? annotations,
  2. List<Endpoint>? endpoints,
  3. String? name,
  4. String? uid,
})

Implementation

Service({
  this.annotations,
  this.endpoints,
  this.name,
  this.uid,
});