Arthur Miranda
Arthur Miranda
**Describe the bug** Flutter allows us to disable lints using: `// ignore_for_file: type=lint`. Reference: https://dart.dev/tools/analysis This is working as expected, actually. When I start my project with this directive, all...
Is your feature request related to a problem? Please describe. - Problem: Difficulty accessing providers in new contexts created by dialogs, modals, pushed routes, leading to frustration and increased boilerplate....
I'm currently using: ```yaml - avoid_late_keyword: allow_initialized: true ignored_types: - AnimationController - StreamSubscription - Timer ``` Timer is working fine and AnimationController too, but StreamSubscription is not working and here...
`sortedBy` is one of the best extensions of `dartx`. `SortedList` class allows us to sort, and uses the internal `order` int to decide whether it is ascending or not. This...
Some empty blocks such as `setState` should and can be empty in some cases: https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#comment-empty-closures-to-setstate I suggest adding an option to resolve the lint when adding any comments, other than...
Description: This lint is excellent and works really well, especially for classes. However, I believe it shouldn’t be applied to extensions at all. Extensions are often grouped and can have...
Dart does not infer the generic type of a callable class from the context, even when the type is unambiguous. For example: ```dart class Validator { String? call(T? value) =>...