Fixed async function template

This commit is contained in:
Szymon Uglis 2018-09-08 23:58:07 +02:00
parent a778670f1e
commit 33a08b5fbd
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@
# name: funca
# key: afun
# --
${1:Type} ${2:Name}($3) async {
Future<${1:Type}> ${2:Name}($3) async {
$0
}