Xavier H.

Results 165 comments of Xavier H.

You can't connect to the website directly. You need a puppeteer instance running on a server and connect to that instance.

@iabhishek-oli Can you post the json file here? The link doesn't work for me.

Workaround is to specify a fallbackGenerator: ```dart @GenerateNiceMocks([ MockSpec(fallbackGenerators: {#bar: fallback}), ]) class Test {} Id fallback() => Id(0); ``` Still, that could be interesting to generate something working by...

Flutter also need to distinguish which are the real dependencies of a package (instead of take everything from the package_config): https://github.com/flutter/flutter/issues/155242 Currently the whole package_config is used to find the...

Maybe the extension can be in the SDK itself then? ```dart extension IterableExtension on Iterable { E? findFirst(bool Function(E) test) {} E? findLast(bool Function(E) test) {} E? findSingle(bool Function(E) test)...