static bool isValidKeyName(String key) { if (key.contains('/')) return false; if (key.contains(RegExp('\\s'))) return false; return true; }