ExecutionParameter constructor

ExecutionParameter({
  1. List<String>? defaultValues,
  2. String? name,
  3. String? type,
})

Implementation

ExecutionParameter({
  this.defaultValues,
  this.name,
  this.type,
});