VolumeParser constructor

VolumeParser(
  1. String text
)

Implementation

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