hasBreakpoint static method

bool hasBreakpoint(
  1. String name
)

Check if a breakpoint exists

Implementation

static bool hasBreakpoint(String name) {
  return customBreakpoints.containsKey(name);
}