List<dynamic>? optList(Map<String, dynamic> json, String key) { final value = json[key]; if (value is List) return value; return null; }