ProcessInterfaceOutputCallback typedef

ProcessInterfaceOutputCallback = FutureOr<void> Function(List<int> chars)

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);