containerInspectInfo method

Future<ContainerInspectInfo> containerInspectInfo(
  1. String id
)

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);
}