logResult method
Log the result if needed.
Implementation
void logResult({String? result}) {
if (result != null && (logLevel >= sqfliteLogLevelSql)) {
print('$_prefix $result');
}
}
Log the result if needed.
void logResult({String? result}) {
if (result != null && (logLevel >= sqfliteLogLevelSql)) {
print('$_prefix $result');
}
}