RedirectAllRequestsTo.fromXml constructor

RedirectAllRequestsTo.fromXml(
  1. XmlElement? xml
)

Implementation

RedirectAllRequestsTo.fromXml(XmlElement? xml) {
  hostName = getProp(xml, 'HostName')?.text;
  protocol = getProp(xml, 'Protocol')?.text;
}