Brian Quinlan
Brian Quinlan
Could someone post a stack trace so I can see what line of code in the `cronet_http` package this is coming from?
> > Maybe you have some updates on the issue? > > I have a PR ready and it will be merged by the end of this week. Could you...
I tried reproducing this with: ```dart void _verifySampleFile(Directory? directory, String name) { if (directory == null) { return; } final File file = File('${directory.path}/$name'); if (file.existsSync()) { file.deleteSync(); assert(!file.existsSync()); }...
Marking this as P2 because there is a workaround on the Flutter side.
Hmmm.... that's interesting so the file exists but `listSync` doesn't see it. Is it possible that there is some sort of timing issue? If you delay one second before calling...
Also, what's the intent of the test?
> The test is a test for the [`path_provider`](https://pub.dev/packages/path_provider) plugin, and is just testing that for each type of external storage directory we are able to get a directory, and...