From 33a08b5fbd3e3b4adf39ab67c8449b02cb82a151 Mon Sep 17 00:00:00 2001 From: Szymon Uglis Date: Sat, 8 Sep 2018 23:58:07 +0200 Subject: [PATCH] Fixed async function template --- snippets/dart-mode/funca | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/dart-mode/funca b/snippets/dart-mode/funca index 65337540a..46d1f2b2e 100644 --- a/snippets/dart-mode/funca +++ b/snippets/dart-mode/funca @@ -2,6 +2,6 @@ # name: funca # key: afun # -- -${1:Type} ${2:Name}($3) async { +Future<${1:Type}> ${2:Name}($3) async { $0 } \ No newline at end of file