`MapBuilder` currently has the factory: `factory MapBuilder([map = const {}])` I think it should be ```dart factory MapBuilder([map = const <K, V>{}]) ``` there are also other instances where dynamic is used instead of strict types, is that intentional? e.g. https://github.com/google/built_collection.dart/issues/241
MapBuildercurrently has the factory:factory MapBuilder([map = const {}])I think it should be
there are also other instances where dynamic is used instead of strict types, is that intentional? e.g. #241