swagger_generator_flutter/lib/templates/api/api_method.mustache

10 lines
209 B
Plaintext

{{#docLines}}
/// {{.}}
{{/docLines}}
{{#annotations}}
{{.}}
{{/annotations}}
Future<{{returnType}}> {{methodName}}(
{{#params}} {{#annotation}}{{.}} {{/annotation}}{{type}} {{name}},
{{/params}} );