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