osama
osama
> Oh, I see. At the point we show this dialog we don't really know that, because we're just doing a very basic check on the timestamps of pubspec.yaml vs...
@w3b6x9 It looks like `neq`, `lt`, `lte`, `gt`, and `gte` are already supported by walrus according this comment: - https://github.com/supabase/walrus/issues/9#issuecomment-1018927685 But it isn't supported by realtime according to this: -...
CL submitted at: https://dart-review.googlesource.com/c/sdk/+/351781 to include the lint in `collection_methods_unrelated_type`
> The lint rule will always _over_ report or _under_ report, whether we consider two inequal types which share a common type in their super hierarchy. Yeah I haven't given...
I did look into this briefly and tried to find the cause of the issue. The issue could be coming from codemirror itself but I am not sure. I noticed...
The signature for `_needrebuild` seems to have changed recently in https://github.com/flutter/flutter/commit/cbe0ceafe2a58b498d5ba4a895e0fc22a2a89b6f cc @andrewkolos
Hi @huycozy There's no issue to reproduce here in terms of using `flutter`. This bug in the code was discovered using static analysis as part of a change in the...
Glad that was helpful! It's easy to miss `Iterable.whereType` when refactoring as there's no lint for that at the moment. I fell into a similar trap recently which is what...
You need to set the update frequency before starting the player such as: ```dart await player.setSubscriptionDuration(const Duration(milliseconds: 100); //
Verbose log (filled) ```log Initial debug configuration: { name: 'LLDB - VM runtime debugger', type: 'lldb', request: 'launch', cwd: '${workspaceFolder:sdk}/xcodebuild/DebugX64/', program: '${workspaceFolder:sdk}/xcodebuild/DebugX64/dart', args: [ 'run', '--observe', '--pause-isolates-on-start', '~/dart_breakpoint_issue_53376/test/dart_breakpoint_issue_53376_test.dart' ], terminal:...