How to parse an XMI file (or XML)

How can I parse an XML file in a dart?

I found https://github.com/prujohn/dart-xml , but could not use it in the full file (after removing the header and just using uml: Model elements there were problems with the UI).

I need to parse an XMI file exported from Altova UModel containing UML. If this particular battery is not currently turned on, what is the turn-on time?

+6
source share
1 answer

Well, there is a package that you can use here:

http://pub.dartlang.org/packages/xml

+3
source

All Articles