statusDescription property

String get statusDescription

Descripción del estado

Implementation

String get statusDescription {
  if (!wasRequested) return 'Not requested';
  if (fetchError != null) return 'Failed: $fetchError';
  if (isCached) return 'Using cached config';
  if (fetchSuccessful) return 'Fresh from server';
  return 'Unknown status';
}