gato 0.0.2 gato: ^0.0.2 copied to clipboard
Gato is a dart utility library inspired by javascript lodash library.
import '../lib/gato.dart';
void main() {
Map<String, dynamic> map = {
'a': {'b': 1}
};
print(get(map, 'a.b'));
map = set(map, 'a.c', 2);
print(get(map, 'a.c'));
}