BreakpointLocation constructor

BreakpointLocation({
  1. int? column,
  2. int? endColumn,
  3. int? endLine,
  4. required int line,
})

Implementation

BreakpointLocation({
  this.column,
  this.endColumn,
  this.endLine,
  required this.line,
});