String? normalizeUserAIBotQrCode(String? raw) { final value = raw?.trim(); if (value == null || value.isEmpty) { return null; } return value; }