refreshed property

bool refreshed

Implementation

bool get refreshed {
  return _refreshed;
}
void refreshed=(bool value)

Implementation

set refreshed(bool value) {
  _refreshed = value;
  if (value) {
    notifyListeners();
  }
}