Breakpoint constructor

Breakpoint({
  1. int? breakpointNumber,
  2. bool? enabled,
  3. bool? resolved,
  4. dynamic location,
  5. String? id,
  6. bool? isSyntheticAsyncContinuation,
})

Implementation

Breakpoint({
  this.breakpointNumber,
  this.enabled,
  this.resolved,
  this.location,
  super.id,
  this.isSyntheticAsyncContinuation,
});