Parser constructor
Parser({
- required String id,
- required List<
String> parent, - required ParserType type,
- List<
String> selector = const [], - bool isPrivate = false,
- bool multiple = false,
- Optional? optional,
- 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,
});