Stephen Vaudreuil
Stephen Vaudreuil
For anyone else who encounters this issue, there are two work-arounds: 1. Before calling `.copyWith` on a spot, verify the spot is not null. 2. Transform any data you plan...
Yes, this looks like it solves the issue nicely. Just to demonstrate what my scenario was, it looked something like this: ```dart double? transformUp(double? yVal) => yVal == null ?...
I am also running into this issue. Making the parameter optional does not appear to solve the problem; the parameter is then omitted from the `copyWith` method altogether. This issue...
I don't know if there is a separate issue for this for Dart, but it seems like this is a universal issue when one needs to escape the `$` symbol....
> Any update on this? I'm having this problem as well Not that I've seen. The simplest work-around is to use the `copyWith` to manually clamp your annotations to the...
> On what platform are you seeing the reported behavior ? Mac Desktop. I apologize, I should have been more clear: the error happens when the user enters text (as...
@Ayushrestha05 Sure thing. Here is a modified code sample that works well enough for us. It's still a bit janky but it gets the job done. The big picture changes...
This issue also exists for the `dart`, `dart-dio`, and `scala-` generators. > I have used a workaround where I drop the "oneOf" from the parent and leave just the "discriminator"....
I know this is an old issue and you may not still be looking for a solution, but this caught my interest. Perhaps it can be useful to others looking...
I am also having this issue in IntelliJ and in Xcode, but [judging by this thread](https://www.reddit.com/r/MacOSBeta/comments/1l7tctb/bug_background_process_is_show_in_dock/mwzpgtx/), this may be an issue for _any_ background task, not just for dart/flutter. In...