provider
provider copied to clipboard
records not visible in provider devtools extension
Describe the bug Dart records are not visible in the provider's DevTools extension.
To Reproduce
- Create an
InheritedProvidercontaining 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;
related to https://github.com/rrousselGit/provider/issues/890