DartSpawner constructor
DartSpawner({
- Directory? directory,
- DartProjectLogger? logger,
- bool logToConsole = false,
- Duration? startupTimeout,
Constructs a new DartSpawner.
directory
the target project directory.typestartupTimeout
the timeout to identify the Isolate startup.
Implementation
DartSpawner(
{Directory? directory,
DartProjectLogger? logger,
bool logToConsole = false,
Duration? startupTimeout})
: startupTimeout = defaultStartupTimeout,
isolateCheckPingTimeout = defaultIsolateCheckPingTimeout,
super(
directory: directory, logger: logger, logToConsole: logToConsole) {
logDebug(this);
}