Flutter: InternalLinkedHashMap<String, dynamic>' has no instance method 'cast' with matching arguments Flutter: InternalLinkedHashMap<String, dynamic>' has no instance method 'cast' with matching arguments dart dart

Flutter: InternalLinkedHashMap<String, dynamic>' has no instance method 'cast' with matching arguments


Use instead

.cast<String,dynamic>();

See also https://api.dartlang.org/stable/2.0.0/dart-core/Map/cast.html

Usually it's better to use Map<String,String>.from(oldMap) instead of cast<...>(...)