Parser constructor

Parser({
  1. required String id,
  2. required List<String> parent,
  3. required ParserType type,
  4. List<String> selector = const [],
  5. bool isPrivate = false,
  6. bool multiple = false,
  7. AbstractOptional? optional,
  8. CleanerFunction? cleaner,
})

Implementation

Parser({
  required this.id,
  required this.parent,
  required this.type,
  this.selector = const [],
  this.isPrivate = false,
  this.multiple = false,
  this.optional,
  this.cleaner,
});