Output constructor

Output({
  1. String? description,
  2. String? exportName,
  3. String? outputKey,
  4. String? outputValue,
})

Implementation

Output({
  this.description,
  this.exportName,
  this.outputKey,
  this.outputValue,
});