ReshardingStatus.fromXml constructor
ReshardingStatus.fromXml(
- XmlElement elem
Implementation
factory ReshardingStatus.fromXml(_s.XmlElement elem) {
return ReshardingStatus(
slotMigration: _s
.extractXmlChild(elem, 'SlotMigration')
?.let((e) => SlotMigration.fromXml(e)),
);
}