Describe the bug
Dart records are not visible in the provider's DevTools extension.
To Reproduce
- Create an
InheritedProvider containing a record field.
- Check the field value in DevTools. It will show
<unknown error> (I have used a typedef for the record).
Expected behavior
The record value should be visible.
typedef Coordinates = ({double lat, double long});
final Coordinates coordinates;

Describe the bug
Dart records are not visible in the provider's DevTools extension.
To Reproduce
InheritedProvidercontaining a record field.<unknown error>(I have used a typedef for the record).Expected behavior
The record value should be visible.