Xavier H.
Xavier H.
My system upgraded me to postgres v2.6.4 released recently. Now I see this warning: ``` ../../../../../.pub-cache/hosted/pub.dev/postgres-2.6.4/lib/src/substituter.dart:24:52: Warning: Operand of null-aware operation '!' has type 'Map' which excludes null. - 'Map'...
I'm experimenting with the `postgres_v3_experimental.dart` I notice this throws an exception: ```dart PgSql.map('select email from "AspNetUsers" where id=@userId:int') ``` `FormatException: Error at offset 42 (@userId:int): Unknown type: int` According to...
The last version of the formatter puts each attribute on his own line, this is great. I would like it adds some empty line between the annotated fields to be...
Latest Flutter version from the beta channel (v3.25.0) has a warning with this entries in the pubspec.yaml ``` Package open_filex:linux references dartPluginClass:linux as the default plugin, but the package does...
**EDIT** - best solutions so far: * Use `package:collection` ```dart import 'package:collection/collection.dart'; void main() { var list = ['a', 'b', 'c']; var d = list.firstWhereOrNull((e) => e == 'd'); }...
The method `RxBleConnection.discoverServices` caches the result. How do we force the refresh of the service list? For example, my device will expose a different set of bluetooth Services/Characteristics after we've...
### Steps to reproduce - Run the given code with Flutter Web in the Safari or Firefox browser - Open the dialog - Try to write some text in each...
Fixes #801 Have the generator correctly generate dummy return value for `Future` Before, the generators would return: `_i2.Future.value((0))` (which won't compile). After, it will generate a cast from the representation...
```dart import 'package:mockito/annotations.dart'; class Foo { Future bar() async => Id(0); } extension type Id(int id) {} @GenerateNiceMocks([MockSpec()]) class Test {} ``` Will generate ```dart class MockFoo extends _i1.Mock implements...
I don't want my logs to be spammed with debug info from a third party package. I think `dataTableShowLogs` should be false by default and only enabled in your tests...