close method

Future<void> close()

Closes this instances, and internal dockerHost.

Implementation

Future<void> close() async {
  try {
    return dockerHost.close();
  }
  // ignore: empty_catches
  catch (e) {}
}