swagger_generator_flutter/lib/templates/api/api_method.mustache

10 lines
239 B
Plaintext

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