buildExport method

  1. @override
Future<VantageExportBundle> buildExport({
  1. bool includeSensitive = false,
})
override

Runs an export across every registered ExportContributor, applying the host redactor to all text artifacts. includeSensitive must reflect an explicit user action — VantageSensitivity.sensitive artifacts are dropped otherwise.

Implementation

@override
Future<VantageExportBundle> buildExport({bool includeSensitive = false}) =>
    VantageExportPipeline(contributors: exportContributors)
        .build(includeSensitive: includeSensitive);