load method

void load()

Loads the base data and executes the conversion.

Implementation

void load() {
  if (!loading) {
    loading = true;
    fetch().then((base) {
      loading = false;
      value = value.copy(base: base);
      execute(base);
    });
  }
}