ReshardingStatus.fromXml constructor

ReshardingStatus.fromXml(
  1. XmlElement elem
)

Implementation

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