Recent updates of the dependency to allo-isolate introduced support chrono::NaiveDate in FRB. However, when converting a Rust struct containing a field of type chrono::NaiveDate a (working 👍🏻) Dart class which extends from RustOpaque is generated.
Despite the fact that this should be enough to technically utilize the Dart class it would be much nicer if it generated a field of type DateTime instead of depending on RustOpaque. This enables quite more capabilities on the Dart side. In my case especially reflection.
Recent updates of the dependency to allo-isolate introduced support
chrono::NaiveDatein FRB. However, when converting a Rust struct containing a field of typechrono::NaiveDatea (working 👍🏻) Dart class which extends fromRustOpaqueis generated.Despite the fact that this should be enough to technically utilize the Dart class it would be much nicer if it generated a field of type
DateTimeinstead of depending onRustOpaque. This enables quite more capabilities on the Dart side. In my case especially reflection.