ServerEndpoint constructor

const ServerEndpoint({
  1. required String path,
  2. required HttpMethod method,
  3. required String description,
})

Implementation

const ServerEndpoint({
  required this.path,
  required this.method,
  required this.description,
});