args property
List<InputValueDefinition> ?
get
args
Implementation
List<InputValueDefinition>? get args => astNode!.args
.map(
(arg) => InputValueDefinition(arg, getType),
)
.toList();