refresh method

void refresh()

Refreshes the reactive value if one exists.

Implementation

void refresh() {
  if (_reactive != null) {
    _reactive!.value = provider.create();
  }
}