Endpoint.get constructor
Implementation
factory Endpoint.get(
String name,
String path, {
Map<String, DslType>? variables,
DslType? response,
}) => Endpoint._(
name: name,
method: HttpMethod.get,
path: path,
variables: variables,
response: response,
);