Breakpoint constructor

Breakpoint({
  1. int? column,
  2. int? endColumn,
  3. int? endLine,
  4. int? id,
  5. String? instructionReference,
  6. int? line,
  7. String? message,
  8. int? offset,
  9. Source? source,
  10. required bool verified,
})

Implementation

Breakpoint({
  this.column,
  this.endColumn,
  this.endLine,
  this.id,
  this.instructionReference,
  this.line,
  this.message,
  this.offset,
  this.source,
  required this.verified,
});