Results 13 comments of :o:

This might not be the right place for this, but for me function parameters came to mind, and I do like the idea of the prefixed dot: * `color: Color.value`...

For future reference: ``` import jaydebeapi as jdba import jpype #jdba uses jpype, but for me it only worked if I set up the jvm via jpype directly jar =...

> we should have an old discussion about this in some issue, but I couldn't find it Probably another issue, but maybe this: https://github.com/dart-lang/sdk/issues/49553?

Relatedly, this also does not work for the following case: ```dart bool bothTheSame(bool? a, bool? b) => switch ((a, b)) { (bool? b1, bool? b2) when b1 == b2 =>...

In case anyone wanted to do this for pasting source code to visualize in drawio, here is a workaround: - replace all " " spaces in your code with another...

> > I'm running into the same issue....using `flutter run ...` `Process.run(...)` works as expected. However, using `flutter build ...`, `Process.run(...)` crashes app. > > I also encountered the same...

@gspencergoog did you run the release build from finder or from terminal?

Might be this: https://github.com/flutter/flutter/issues/75911#issuecomment-788216117

Not sure why the formatter is still failing the pipeline

Workaround stopped working for me, this worked: ```dart class _Adapter extends BrowserHttpClientAdapter { _Adapter() { withCredentials = true; } } ```