waitForAsync static method

Future<void> waitForAsync()

Wait for all async operations to complete

Implementation

static Future<void> waitForAsync() async {
  await Future.delayed(const Duration(milliseconds: 100));
}