VolumeParser constructor
VolumeParser(
- String text
Implementation
VolumeParser(String text) {
final doc = XmlDocument.parse(text);
String v = doc.findAllElements('CurrentVolume').first.text;
current = int.parse(v);
}