I want to locate and remove the Future
unnecessary_async sounds like it should do this, but a method like this does not get flagged (which is what I am looking for):
Future todaysDate() async {
return DateTime.now().toString();
}
Is there any easy way to quickly identify all such methods? Thanks.