getCurrentResolution method

String getCurrentResolution()

✅ NOVO: Retorna a resolução atual como string formatada

Implementation

String getCurrentResolution() {
  if (_currentScreenSize == null) return 'N/A';
  return '${_currentScreenSize!.width.toInt()}×${_currentScreenSize!.height.toInt()}';
}