ContainerDetails constructor

ContainerDetails({
  1. String? imageId,
  2. String? imageName,
  3. String? launchedAt,
  4. String? name,
})

Implementation

ContainerDetails({
  this.imageId,
  this.imageName,
  this.launchedAt,
  this.name,
});