getDirectiveValues method
Implementation
Iterable<ValueNode> getDirectiveValues(String directive, String argument) => getDirectives(directive)
.expand((directive) => directive.arguments.where((e) => e.name.value == argument))
.map((d) => d.value);