ExitInfo constructor

ExitInfo({
  1. String? error,
  2. int? exitCode,
})

Implementation

ExitInfo({
  this.error,
  this.exitCode,
});