getMap<K, V> method
Implementation
Map<K,V> getMap<K,V>(dynamic key){
Map<K,V> result={};
try {
if (this.containsKey(key)) {
if(this[key]!=null) {
result = this[key].cast<K,V>();
}
}
}
catch(ex,stack){
Simplify.getExceptionMessage(ex,stack:stack);
}
return result;
}