dart-lang / collection

The collection package for Dart contains a number of separate libraries with utility functions and classes that makes working with collections easier.

Home Page:https://pub.dev/packages/collection

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CombinedMapView not working as expected in Flutter

Z6P0 opened this issue · comments

commented

If I run this code

print(CombinedMapView([{'a': 1}, {'a': 2}]));

in Dart it prints as expected

{a: 1}

but in Flutter it prints

{a: 1, a: 1}

Is there a bug or did I miss something?

What version of this package are you using in each case?

This looks like #109 - make sure you have at least 1.14.12

I'm going to close this with the assumption that you are on an old version. If you still see this after upgrading to 1.14.12 we can reopen.