BreakpointLocationsArguments constructor

BreakpointLocationsArguments({
  1. int? column,
  2. int? endColumn,
  3. int? endLine,
  4. required int line,
  5. required Source source,
})

Implementation

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