HttpRule constructor
HttpRule({
- required RequestMethod method,
- required String pathTemplate,
- required List<
PathSegment> segments, - String? body,
- List<
HttpRule> ? additionalBindings,
Implementation
HttpRule({
required this.method,
required this.pathTemplate,
required this.segments,
this.body,
List<HttpRule>? additionalBindings,
});