preload method
Implementation
void preload(Iterable json) {
dontNotify = true;
for (MP item in json) {
if (item['id'] is int && !Fractal.storage.containsKey(item['id'])) {
put(MakeF(item));
}
}
dontNotify = false;
}
void preload(Iterable json) {
dontNotify = true;
for (MP item in json) {
if (item['id'] is int && !Fractal.storage.containsKey(item['id'])) {
put(MakeF(item));
}
}
dontNotify = false;
}