TypeDefinitionNode constructor

const TypeDefinitionNode({
  1. StringValueNode? description,
  2. required NameNode name,
  3. List<DirectiveNode> directives = const [],
  4. FileSpan? span,
})

Implementation

const TypeDefinitionNode({
  this.description,
  required this.name,
  this.directives = const [],
  FileSpan? span,
}) : super(span);