preload method

void preload(
  1. Iterable json
)

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;
}