Andrei Ceaus
Andrei Ceaus
@kevmoo this issue wasn't about supporting `Option`, that was just an example. The request is for `@JsonKey(includeIfNull: false)` to support use cases where the type is non-nullable but `toJson()` can...
I can't get an overriden `toJson()` to work either, even after defining an empty private constructor.
Thanks @beneyal that worked! Keeping this issue open as a feature request for the ability to fully override the default error pages.
We've recently started working on a project with Flutter Web but we were unaware that it doesn't support Hot Reload. I guess we took it for granted as it's such...
I've come across this issue as well while using the textract client. For example: ``` export interface BoundingBox { Width?: number; Height?: number; Left?: number; Top?: number; } ``` That...
I use `flutter_local_notifications` version 13 to avoid the `timezone` dependency
Can't we work with UTC dates instead of time zoned dates and avoid the need for the `timezone` dependency? Converting to UTC should solve the daylight savings issues.
For anyone interested, you can get around the `timezone` package by converting your dart DateTime to UTC first: ```dart TZDateTime.from(dateTime.toUtc(), UTC) ``` Then you can use it with `.zonedSchedule` ```dart...