getObject<T> method
Implementation
T? getObject<T>(String key, T fromMap(Map<String, dynamic> map)){
String jsonResult = _get(key, "");
if(ObjectUtil.isNotEmpty(jsonResult)){
return fromMap(json.decode(jsonResult));
}
return null;
}