static List<String>? resolveLists(List<dynamic>? str) { if (str != null) { return str.cast<String>(); } return null; }