hasPositinalParams method
Does this object has positional params?
Implementation
bool hasPositinalParams() {
if (0 == positionalValues.length) {
return false;
} else {
return true;
}
}
Does this object has positional params?
bool hasPositinalParams() {
if (0 == positionalValues.length) {
return false;
} else {
return true;
}
}