args property

Implementation

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