getList method
Implementation
List getList(dynamic key){
List result=[];
try {
if (this.containsKey(key)) {
if(this[key]!=null) {
result = this[key] as List;
}
}
}
catch(ex,stack){
Simplify.getExceptionMessage(ex,stack:stack);
}
return result;
}