String? localizeWatts(double? watts) { if (watts == null) return null; return '${watts.toStringAsFixed(1)} W'; }