join method

Future join({
  1. required String errorMessage,
})

Implementation

Future join({required String errorMessage}) async {
  final process = await this;
  final exitCode = await process.exitCode;
  if (exitCode != 0) {
    throw MhuExitStatusException('$errorMessage (exit status $exitCode)');
  }
}