Container constructor

Container({
  1. bool? blockExternalNetwork,
  2. List<String>? commands,
  3. String? entrypoint,
  4. String? imageUri,
  5. String? options,
  6. String? password,
  7. String? username,
  8. List<String>? volumes,
})

Implementation

Container({
  this.blockExternalNetwork,
  this.commands,
  this.entrypoint,
  this.imageUri,
  this.options,
  this.password,
  this.username,
  this.volumes,
});