GetQueryLoggingConfigResponse.fromXml constructor

GetQueryLoggingConfigResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory GetQueryLoggingConfigResponse.fromXml(_s.XmlElement elem) {
  return GetQueryLoggingConfigResponse(
    queryLoggingConfig: QueryLoggingConfig.fromXml(
        _s.extractXmlChild(elem, 'QueryLoggingConfig')!),
  );
}