containerInspectInfo method
Returns a strongly-typed inspect model for id.
Equivalent to calling containerDetails and passing the result to ContainerInspectInfo.fromJson.
Implementation
Future<ContainerInspectInfo> containerInspectInfo(String id) async {
final details = await containerDetails(id);
return ContainerInspectInfo.fromJson(details);
}