LSLXml constructor

LSLXml({
  1. required lsl_xml_ptr xmlPtr,
})

Creates a new LSLXml object.

Implementation

LSLXml({required this.xmlPtr}) {
  if (xmlPtr.isNullPointer) {
    throw LSLException('Invalid XML pointer');
  }
}