Kilian Schulte
Kilian Schulte
If I don't, it never completes and my code is stuck. And not awaiting them is not possible because I need the return value?? The timeout was just for demonstration...
From `jaspr serve -h` ``` Runs a development server that serves the web app with SSR and reloads based on file system updates. Usage: jaspr serve [arguments] -h, --help Print...
Cool, thanks for this. I will try it out a bit, although the runtimeType issue might become a problem but let's see.
The 5467 is a fixed port used internally by the dev server. Your app will be served on the specified port as you see in the last lines of the...
There are limit and offset properties on the QueryParams class that you can provide to any query() method.
Yes I'm happy about any contribution. Feel free to open a pull request.
Ok makes sense. Its because for this class the copyWith is still an extension and not a mixin, which causes the type parameter to get lost. So I just change...
If you are interested why this is: Extensions work with the static type of an object, while mixins work with the runtime type. So having an extension on A, then...
Published in next prerelease
Do you have some reproduction code?