ProcessInterfaceOutputCallback typedef
Signature for callbacks that handle output (stdout/stderr) from a process.
chars contains the raw byte data from the process output.
Implementation
typedef ProcessInterfaceOutputCallback = FutureOr<void> Function(
List<int> chars);