Skip to content

Commit f35cb58

Browse files
committed
comment spacing
1 parent 90fc737 commit f35cb58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

templates/dart/lib/services/service.dart.twig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ class {{ service.name | caseUcfirst }} extends Service {
1414
{{ service.name | caseUcfirst }}(super.client);
1515

1616
{% for method in service.methods %}
17-
/// {{ method.title }}
17+
/// {{ method.title }}
1818
{%~ if method.description %}
19-
///
19+
///
2020
{{ method.description | dartComment }}
21-
///
21+
///
2222
{% endif %}
2323
{% if method.type == 'location' %}Future<Uint8List>{% else %}{% if method.responseModel and method.responseModel != 'any' %}Future<models.{{method.responseModel | caseUcfirst | overrideIdentifier}}>{% else %}Future{% endif %}{% endif %} {{ method.name | caseCamel }}({{ _self.method_parameters(method.parameters.all, method.consumes) }}) async {
2424
final String path = '{{ method.path }}'{% for parameter in method.parameters.path %}.replaceAll('{{ '{' }}{{ parameter.name | caseCamel }}{{ '}' }}', {{ parameter.name | caseCamel | overrideIdentifier }}){% endfor %};

0 commit comments

Comments
 (0)