containerDetails method
Returns the raw inspect JSON for a single container.
Sends GET /containers/{id}/json. Use containerInspectInfo for
a strongly-typed version.
Implementation
Future<Map<String, dynamic>> containerDetails(String id) async {
final resp = await _request('GET', '/containers/$id/json');
_throwIfError(resp);
return resp.bodyJson as Map<String, dynamic>;
}