-
-
Notifications
You must be signed in to change notification settings - Fork 523
Open
Labels
Description
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;
