toXml method

XmlNode toXml()

Implementation

XmlNode toXml() {
  final builder = XmlBuilder();
  builder.element(
    'AnalyticsExportDestination',
    nest: () {
      builder.element(
        'S3BucketDestination',
        nest: s3BucketDestination!.toXml(),
      );
    },
  );
  return builder.buildDocument();
}