void ready()

in lib/src/diff_view.dart [33:51]


  void ready() {
    assert(currentlyLoaded != null);

    _beforeView.onFile.map(_strToHelper).listen((InfoHelper ih) {
      _update(ih, null);
    });

    _afterView.onFile.map(_strToHelper).listen((InfoHelper ih) {
      _update(null, ih);
    });

    _beforeUseCurrent.onClick.listen((_) {
      _update(currentlyLoaded, null);
    });

    _afterUseCurrent.onClick.listen((_) {
      _update(null, currentlyLoaded);
    });
  }