static List<String>? nullableStringToList(String? value) => value != null ? stringToList(value) : null;