map_enhancer 0.1.0 copy "map_enhancer: ^0.1.0" to clipboard
map_enhancer: ^0.1.0 copied to clipboard

outdated

A plugin which extends Dart's native `Map` type with a couple of handy methods.

example/main.dart

import 'package:map_enhancer/map_enhancer.dart';

void main() {
  final Map peter = {
    'name': {
      'firstName': 'Peter',
      'lastName': 'Petrelli',
    },
    'age': 29,
  };

  print(
    peter.get(['name', 'firstName']),
  );
  // Output: Peter

  // or if you prefer the json "dot notation":
  print(
    peter.get('name.firstName'.split('.')),
  );
  // Output: Peter

  // call with default value:
  print(
    peter.get(
      'name.nickName'.split('.'),
      defaultValue: 'Pete',
    ),
  );
  // Output: Pete

  peter.set(['ability'], 'Empathic mimicry');
  print(peter['ability']);
  // Output: Empathic mimicry

  peter.unset(['name', 'lastName']);
  print(peter['name']['lastName']);
  // Output: null
}
4
likes
40
pub points
30%
popularity

Publisher

unverified uploader

A plugin which extends Dart's native `Map` type with a couple of handy methods.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

More

Packages that depend on map_enhancer