removeNetwork method

Future<bool> removeNetwork(
  1. String? networkName
)

Removes a Docker network with networkName.

Implementation

Future<bool> removeNetwork(String? networkName) =>
    DockerCMD.removeNetwork(this, networkName);