TextNode constructor

TextNode({
  1. required String path,
  2. required String? comment,
  3. required String raw,
  4. required StringInterpolation interpolation,
  5. required CaseStyle? paramCase,
})

Implementation

TextNode({
  required super.path,
  required super.comment,
  required this.raw,
  required this.interpolation,
  required this.paramCase,
});