Matthias Ngeo
Matthias Ngeo
### Is there an existing feature request for this? - [X] I have searched the existing issues. ### Command flutterfire configure --[no]-apply-ios-project-files ### Description Currently, there's a flag to control...
Recently, when using Mockito, I accidentally capitalized the path of an imported type which was used to generate mocks. ```dart import 'package:my_package:/UPPERCASE/foo.dart'; @GenerateMocks([Foo]) void main() {} ``` The actual path...
* Dart 3.0.0 The analyzer claims that the following code snippet isn't exhaustive when it is. It emits the following message: `The type 'int' is not exhaustively matched by the...
`meta`: 1.12.0 Currently, the `@internal` annotation does not suppress the `public_member_api_docs` on functions. This is inconsistent with the behaviour of `@internal` on classes and mixins. 
## `avoid_mixing_comment_identifiers` ## Description It is possible to accidentally mix dartdoc comments and normal comments. This is especially true when you have a long chunk of documentation. Ideally the lint...
**Describe the issue** `public_member_api_docs` does not flag constructors in abstract interface classes that are undocumented. **To Reproduce** ```dart abstract interface class Foo { factory Foo.a() = Bar; factory Foo.b() =>...
This PR refactors Material's bottom sheet & related widgets. It also replaces internal usage of deprecated types such as `MaterialState` with `WidgetState`. ## Pre-launch Checklist - [x] I read the...
From my understanding, there are two main ways in which API users browse documentation: * Viewing the generated Dart docs, such as the one on [api.flutter.dev](https://api.flutter.dev). * Hovering over a...
From my understanding, we currently need to verify JWT tokens passed from the client to the server manually using a 3rd party library. There is already a function to retrieve...
Dart SDK version: 3.10.3 The following code snippet produces a false positive: ```dart class A { int get _value => 0; set _value(int v) { print('A'); } } extension E...