I wanted to declare async function as a variable in Dart? How I can achieve this ?
I wanted to declare async function as a variable in Dart? How I can achieve this ?
Future<void> Function() myAsyncFunc;
Future<void> anotherAsyncFunc() async => print('solution');