ContainerNetworkEndpoint constructor

const ContainerNetworkEndpoint({
  1. ContainerIPAMConfig? ipamConfig,
  2. List<String>? links,
  3. String? macAddress,
  4. List<String>? aliases,
  5. Map<String, String>? driverOpts,
  6. int? gwPriority,
  7. String? networkID,
  8. String? endpointID,
  9. String? gateway,
  10. String? ipAddress,
  11. int? ipPrefixLen,
  12. String? ipv6Gateway,
  13. String? globalIPv6Address,
  14. int? globalIPv6PrefixLen,
  15. List<String>? dnsNames,
})

Creates a ContainerNetworkEndpoint with the given fields.

Implementation

const ContainerNetworkEndpoint({
  this.ipamConfig,
  this.links,
  this.macAddress,
  this.aliases,
  this.driverOpts,
  this.gwPriority,
  this.networkID,
  this.endpointID,
  this.gateway,
  this.ipAddress,
  this.ipPrefixLen,
  this.ipv6Gateway,
  this.globalIPv6Address,
  this.globalIPv6PrefixLen,
  this.dnsNames,
});