VisitorElement constructor

VisitorElement({
  1. required String name,
  2. required String type,
  3. String? returnType,
  4. List<String> argsList = const [],
  5. String argsString = '',
  6. bool isFunction = false,
  7. List<DartObject> annotations = const [],
})

Implementation

VisitorElement({
  required this.name,
  required this.type,
  this.returnType,
  this.argsList = const [],
  this.argsString = '',
  this.isFunction = false,
  this.annotations = const [],
});