Async methods should return futures
Last updated: 12.09.2020 - 16:00 by Boehrsi
Any async
method should wrap the expected return type in a Future
, this is also valid for void
methods. This way you ensure your code is understandable and future proof.