XmlRemoveElementEdit constructor

XmlRemoveElementEdit({
  1. required String path,
  2. required String tag,
  3. String? content,
  4. Map<String, String>? attributes,
  5. String? removeNextTag,
  6. RemoveComment? commentRemover,
})

Default constructor.

Implementation

XmlRemoveElementEdit({
  required super.path,
  required this.tag,
  this.content,
  this.attributes,
  this.removeNextTag,
  this.commentRemover,
});