List? parseListString(Iterable? json){ if(json==null) return null; return List.from(json); } T? cast(x) => x is T ? x : null;