InventoryDestination.fromXml constructor

InventoryDestination.fromXml(
  1. XmlElement elem
)

Implementation

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