create threads
await DoxIsolate().spawn(3)
Future<void> spawn(int count) async { for (int i = 1; i < count; i++) { await _spawn(i + 1); } }