renderFetchAggregateResultToInt method
Implementation
int renderFetchAggregateResultToInt() {
int intResult = 0;
if (result != null) {
result.forEach((row) {
row.forEach((k,v) {
intResult = v;
});
});
}
else if (singleResult != null) {
singleResult.forEach((k,v) {
intResult = v;
});
}
return intResult;
}