checkWhereArgs function

void checkWhereArgs(
  1. List? args
)

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);
    }
  }
}