Container constructor

Container({
  1. String? createTime,
  2. String? imageId,
  3. List<Label>? labels,
  4. String? name,
  5. String? uri,
})

Implementation

Container({
  this.createTime,
  this.imageId,
  this.labels,
  this.name,
  this.uri,
});