SlotMigration.fromXml constructor

SlotMigration.fromXml(
  1. XmlElement elem
)

Implementation

factory SlotMigration.fromXml(_s.XmlElement elem) {
  return SlotMigration(
    progressPercentage: _s.extractXmlDoubleValue(elem, 'ProgressPercentage'),
  );
}