InlineFragmentNode constructor

const InlineFragmentNode({
  1. TypeConditionNode? typeCondition,
  2. List<DirectiveNode> directives = const [],
  3. required SelectionSetNode selectionSet,
  4. FileSpan? span,
})

Implementation

const InlineFragmentNode({
  this.typeCondition,
  this.directives = const [],
  required this.selectionSet,
  FileSpan? span,
}) : super(span);