ProcessOutput.fromJson constructor
Implementation
factory ProcessOutput.fromJson(Map<String, dynamic> json) {
return ProcessOutput(
exitCode: json['exitCode'] as int,
stdout: json['stdout'] as String? ?? '',
stderr: json['stderr'] as String? ?? '',
);
}