ServiceReference constructor

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

The main constructor.

Implementation

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