NodeText constructor

NodeText([
  1. String text = ''
])

Implementation

NodeText([String text = ''])
    : assert(!text.contains('\n')),
      super.val(text);