ContainerLog.fromJson constructor
Deserialises a ContainerLog from Docker's JSON representation.
Implementation
factory ContainerLog.fromJson(Map<String, dynamic> json) => ContainerLog(
start: json['Start'] as String?,
end: json['End'] as String?,
exitCode: json['ExitCode'] as int?,
output: json['Output'] as String?,
);