Breakpoint constructor

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

Implementation

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