canRefresh property

bool get canRefresh

Implementation

bool get canRefresh {
  if (copyingJson) return false;
  if (query.queryMode) {
    return query.queryText.trim().isNotEmpty && !query.runningQuery;
  }
  return source.selectedCollection != null && table.canRefresh;
}