TextNode constructor

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

Implementation

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