Exception: Concurrent modification during iteration: Instance(length:17) of '_GrowableList'

后端 未结 3 1410
心在旅途
心在旅途 2021-01-03 22:40

I make game. In //ERROR ZONE is called Exception. I don\'t understand it. Class game has List recrangles.

void sp         


        
3条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-03 23:23

    New documentation on latest Dart release 2.1.0 from https://api.dartlang.org/stable/2.1.0/dart-core/Map/removeWhere.html

    Implementation

    Map.removeWhere((key, value) => toRemove.contains(key));
    

提交回复
热议问题