ContainerNetworkSettings constructor

const ContainerNetworkSettings({
  1. String? bridge,
  2. String? sandboxID,
  3. bool? hairpinMode,
  4. String? linkLocalIPv6Address,
  5. int? linkLocalIPv6PrefixLen,
  6. Map<String, List<ContainerPortBinding>?>? ports,
  7. String? sandboxKey,
  8. List<ContainerAddress>? secondaryIPAddresses,
  9. List<ContainerAddress>? secondaryIPv6Addresses,
  10. String? endpointID,
  11. String? gateway,
  12. String? globalIPv6Address,
  13. int? globalIPv6PrefixLen,
  14. String? ipAddress,
  15. int? ipPrefixLen,
  16. String? ipv6Gateway,
  17. String? macAddress,
  18. Map<String, ContainerNetworkEndpoint>? networks,
})

Creates a ContainerNetworkSettings with the given fields.

Implementation

const ContainerNetworkSettings({
  this.bridge,
  this.sandboxID,
  this.hairpinMode,
  this.linkLocalIPv6Address,
  this.linkLocalIPv6PrefixLen,
  this.ports,
  this.sandboxKey,
  this.secondaryIPAddresses,
  this.secondaryIPv6Addresses,
  this.endpointID,
  this.gateway,
  this.globalIPv6Address,
  this.globalIPv6PrefixLen,
  this.ipAddress,
  this.ipPrefixLen,
  this.ipv6Gateway,
  this.macAddress,
  this.networks,
});