ParsedEndpoint constructor

const ParsedEndpoint({
  1. required String id,
  2. String target = 'backend',
  3. String? method,
  4. String? contract,
  5. String? usage,
})

Creates parsed endpoint metadata.

Implementation

const ParsedEndpoint({
  required this.id,
  this.target = 'backend',
  this.method,
  this.contract,
  this.usage,
});