platform-common-utilities/packages/merge_map/README.md
thomashii@dukefirehawk.com 0aee2f64da Updated lints
2023-11-16 23:44:09 +08:00

1 KiB

Belatuk Merge Map

Pub Version (including pre-releases) Null Safety License

Replacement of package:merge_map with breaking changes to support NNBD.

Combine multiple Maps into one. Equivalent to Object.assign in JS.

Example

import "package:belatuk_merge_map/belatuk_merge_map.dart";

void main() {
    Map map1 = {'hello': 'world'};
    Map map2 = {'foo': {'bar': 'baz', 'this': 'will be overwritten'}};
    Map map3 = {'foo': {'john': 'doe', 'this': 'overrides previous maps'}};
    Map merged = mergeMap(map1, map2, map3);

    // {hello: world, foo: {bar: baz, john: doe, this: overrides previous maps}}
}