DynamicMap typedef

DynamicMap = Map<String, dynamic>

A map with string keys and dynamic values. This type alias is used to represent a map where the keys are strings and the values can be of any type.

Implementation

typedef DynamicMap = Map<String, dynamic>;