refresh static method

Future<bool> refresh()

Implementation

static Future<bool> refresh() {
  _refreshInFlight ??= _refresh().whenComplete(() => _refreshInFlight = null);
  return _refreshInFlight!;
}