FieldNode constructor
const
FieldNode({
- NameNode? alias,
- required NameNode name,
- List<
ArgumentNode> arguments = const [], - List<
DirectiveNode> directives = const [], - SelectionSetNode? selectionSet,
- FileSpan? span,
Implementation
const FieldNode({
this.alias,
required this.name,
this.arguments = const [],
this.directives = const [],
this.selectionSet,
FileSpan? span,
}) : super(span);