UpdateHostedZoneCommentResponse.fromXml constructor

UpdateHostedZoneCommentResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory UpdateHostedZoneCommentResponse.fromXml(_s.XmlElement elem) {
  return UpdateHostedZoneCommentResponse(
    hostedZone: HostedZone.fromXml(_s.extractXmlChild(elem, 'HostedZone')!),
  );
}