ContainerSpec constructor
ContainerSpec({})
Implementation
ContainerSpec({
this.command,
this.workingDir,
required this.image,
List<EnvironmentVariable>? environment,
List<String>? secrets,
this.pullSecret,
this.storage,
this.onDemand,
this.writableRootFs,
this.private,
}) : environment = environment ?? [],
secrets = secrets ?? [];