getParameters method
Get the parameters of this QueryPart,
for example:
IntField has its int value as parameter.
FieldWithValue.inCollection has list of values as parameters.
Implementation
List<dynamic> getParameters() {
if (parametersBuilder != null) return parametersBuilder!();
return [];
}