0 purchases
win32 suspend process
A simple library for Dart & Flutter providing an easy way to suspend and resume
processes on the Windows platform from native dart code.
Using #
To suspend:
final process = Win32Process($pid);
final bool suspended = process.suspend();
if (!suspended) {
// Handle failure.
}
copied to clipboard
Then resume:
final bool resumed = process.resume();
if (!resumed) {
// Handle failure.
}
copied to clipboard
Further examples are provided in the examples directory.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.