WorkspaceHookRunner constructor
Creates a hook runner. By default isWindows is read from
Platform.isWindows.
Implementation
WorkspaceHookRunner({
required this.logger,
this.maxOutputBytes = 4096,
bool? isWindows,
}) : isWindows = isWindows ?? Platform.isWindows;