You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While adding records support to built_value I thought I'd check the base case, and it doesn't quite work as dartfmt eats the ? in the generated output.
> cat foo.dart
class A {
()? x;
}
dartfmt foo.dart
Hit a bug in the formatter when formatting foo.dart.
The formatter produced unexpected output. Input was:
class A {
()? x;
}
Which formatted to:
class A {
() x;
}