Would it be possible that strong mode infers the type of `otherMap` below to be `Map<String, String>` ``` dart var map = new Map<String, String>(); var otherMap = new Map.from(map); ``` Now `otherMap` has type `Map<dynamic, dynamic>`.