Callback constructor

Callback({
  1. String? description,
  2. bool? disabled,
  3. bool? proactiveExecutionEnabled,
  4. String? pythonCode,
})

Implementation

Callback({
  this.description,
  this.disabled,
  this.proactiveExecutionEnabled,
  this.pythonCode,
});