DataWedgeExportConfigRequest constructor

const DataWedgeExportConfigRequest({
  1. required String folderPath,
  2. required String exportType,
  3. String? profileName,
})

Creates a new export config request.

folderPath is the path where config files will be exported. exportType is the type of export (use DataWedgeExportType constants). profileName optionally specifies a single profile to export.

Implementation

const DataWedgeExportConfigRequest({
  required this.folderPath,
  required this.exportType,
  this.profileName,
});