ScriptDto<INPUT, OUTPUT> constructor

ScriptDto<INPUT, OUTPUT>({
  1. INPUT? input,
  2. OUTPUT? output,
  3. String? instructions,
})

Creates a ScriptDto with the given properties.

Implementation

ScriptDto({
  this.input,
  this.output,
  this.instructions,
});