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