Container constructor

Container({
  1. List<String>? args,
  2. List<String>? command,
  3. Map<String, String>? env,
  4. String? image,
  5. int? runAsUser,
  6. String? workingDir,
})

Implementation

Container({
  this.args,
  this.command,
  this.env,
  this.image,
  this.runAsUser,
  this.workingDir,
});