MapExtensions extension

Extensions for Map operations with String keys and dynamic values.

on

Methods

deepMerge(Map<String, dynamic> other) Map<String, dynamic>

Available on Map<String, dynamic>, provided by the MapExtensions extension

Deeply merges another map into this map, recursively combining nested maps.
getByPath(String path, {String separator = '.'}) → dynamic

Available on Map<String, dynamic>, provided by the MapExtensions extension

Gets a value from a nested map using dot notation.
toNestedMap({String separator = '.'}) Map<String, dynamic>

Available on Map<String, dynamic>, provided by the MapExtensions extension

Converts a flat map with separator-based keys into a nested map structure.