OutputEventBody constructor

OutputEventBody({
  1. String? category,
  2. int? column,
  3. Object? data,
  4. String? group,
  5. int? line,
  6. required String output,
  7. Source? source,
  8. int? variablesReference,
})

Implementation

OutputEventBody({
  this.category,
  this.column,
  this.data,
  this.group,
  this.line,
  required this.output,
  this.source,
  this.variablesReference,
});