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