Endpoint constructor

Endpoint({
  1. String name = '',
  2. List<String> aliases = const [],
  3. String target = '',
  4. bool allowCors = false,
})

Implementation

Endpoint({
  this.name = '',
  this.aliases = const [],
  this.target = '',
  this.allowCors = false,
}) : super(fullyQualifiedName);