UEpubNode constructor

UEpubNode({
  1. required String tag,
  2. Map<String, String>? attributes,
  3. String text = "",
})

Implementation

UEpubNode({required this.tag, Map<String, String>? attributes, this.text = ""}) : attributes = attributes ?? <String, String>{}, children = <UEpubNode>[];