getList method

List getList(
  1. dynamic key
)

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;
}