TextNode constructor
TextNode({
- required String path,
- required String? comment,
- required String raw,
- required StringInterpolation interpolation,
- required CaseStyle? paramCase,
Implementation
TextNode({
required super.path,
required super.comment,
required this.raw,
required this.interpolation,
required this.paramCase,
});