ProcessingOutput constructor

ProcessingOutput({
  1. required String outputName,
  2. bool? appManaged,
  3. ProcessingFeatureStoreOutput? featureStoreOutput,
  4. ProcessingS3Output? s3Output,
})

Implementation

ProcessingOutput({
  required this.outputName,
  this.appManaged,
  this.featureStoreOutput,
  this.s3Output,
});