addInterface method
void
addInterface(
- InterfaceTypeDefinitionNode def
Implementation
void addInterface(InterfaceTypeDefinitionNode def) {
interfaceTypes[def.name.value] = def;
def.fields.forEach((d) {
addType(d.type, parentType: def.name.value);
});
}