InventoryDestination.fromXml constructor
InventoryDestination.fromXml(
- XmlElement elem
Implementation
factory InventoryDestination.fromXml(_s.XmlElement elem) {
return InventoryDestination(
s3BucketDestination: InventoryS3BucketDestination.fromXml(
_s.extractXmlChild(elem, 'S3BucketDestination')!),
);
}