Container constructor

Container({
  1. List<String>? command,
  2. Map<String, String>? environment,
  3. String? image,
  4. Map<String, ContainerServiceProtocol>? ports,
})

Implementation

Container({
  this.command,
  this.environment,
  this.image,
  this.ports,
});