COSAccelerateConfiguration.fromXml constructor

COSAccelerateConfiguration.fromXml(
  1. XmlElement? xml
)

Implementation

factory COSAccelerateConfiguration.fromXml(XmlElement? xml) {
  return COSAccelerateConfiguration()
    ..status = xml?.getElement('Status')?.innerText
    ..type = xml?.getElement('Type')?.innerText;
}