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