Stefan Galler

Results 6 issues of Stefan Galler

Assuming I have a `FutureProvider` combining two other `FutureProvider`s. Both `futureProvider1` and `futureProvider2` might throw an exception. ``` final futureProvider = FutureProvider((ref) async { final future1 = await ref.watch(futureProvider1.future); final...

documentation

Currently, it seems not to be possible to ignore unknown enum values when serializing. Given the following example: ``` enum MyEnum { a, b, c } @JsonSerializable() class MyModel {...

Type: enhancement
pkg:json_serializable
pkg:json_annotation

A feature that I would find nice would be to remove some files from the coverage report. It could simply use the lcov command like this: `lcov --remove coverage/lcov.info 'lib/**/*.g.dart'...

help wanted

I tried using the Gradle plugin together with Flyway for migrations. When I run `generateExposedCode`, there is a class generated for the FlywaySchemaHistory table. Strangely, in the generated code it...

bug

I have the following column in my database: ``` excluded boolean default false not null ``` The generated code is: ``` val excluded: Column = bool("excluded") ``` But it should...

It would be awesome if there was an option to use `kotlinx.datatime` instead of Java datetime. PS: Thanks for this plugin anyway :)