TextNode constructor

TextNode({
  1. required String path,
  2. required String rawPath,
  3. required Map<String, String> modifiers,
  4. required String? comment,
  5. required String raw,
  6. required bool shouldEscape,
  7. required StringInterpolation interpolation,
  8. required CaseStyle? paramCase,
})

Implementation

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