ServiceReference constructor

const ServiceReference({
  1. String? name,
  2. String? namespace,
  3. int? port,
})

The main constructor.

Implementation

const ServiceReference({
  this.name,
  this.namespace,
  this.port,
});