DebugBreak function Null safety kernel32
Causes a breakpoint exception to occur in the current process. This allows the calling thread to signal the debugger to handle the exception.
void DebugBreak();
Implementation
void DebugBreak() {
final _DebugBreak =
_kernel32.lookupFunction<Void Function(), void Function()>('DebugBreak');
return _DebugBreak();
}