checkWhereArgs function
Check whether the where args are valid. null is not supported here.
Implementation
void checkWhereArgs(List<dynamic>? args) {
if (isDebug && args != null) {
for (var arg in args) {
_checkArg(arg);
}
}
}
Check whether the where args are valid. null is not supported here.
void checkWhereArgs(List<dynamic>? args) {
if (isDebug && args != null) {
for (var arg in args) {
_checkArg(arg);
}
}
}