fromJson static method
Implementation
static ContainerExitStatus fromJson(Map<String, dynamic> json) {
return ContainerExitStatus(
exitCode: json["exit_code"],
reason: json["reason"],
message: json["message"],
oomKilled: json["oom_killed"],
);
}