'Task' cannot be constructed because it has no accessible initializers

Viewed 1672
1 Answers

It looks like the current syntax is async { ... } instead of Task { ... } with the intention that the Task syntax is to be used in some future build.

Related