opParams function
Implementation
String opParams(DocumentNode doc, List<InputValueDefinitionNode> args) {
String str = '';
args.forEach((arg) {
str +=
' "${arg.name.value}": this.serializer.write(${arg.name.value}, typeName: "${arg.type.toRawType()}", isList: ${arg.type is ListTypeNode},),';
});
return str;
}