List<String>? parseListString(json){
if(json==null) return null;
return new List<String>.from(json);
}