ContainerImageManifestDescriptor constructor

const ContainerImageManifestDescriptor({
  1. String? mediaType,
  2. String? digest,
  3. int? size,
  4. List<String>? urls,
  5. Map<String, String>? annotations,
  6. Object? data,
  7. ContainerPlatform? platform,
  8. String? artifactType,
})

Creates a ContainerImageManifestDescriptor with the given fields.

Implementation

const ContainerImageManifestDescriptor({
  this.mediaType,
  this.digest,
  this.size,
  this.urls,
  this.annotations,
  this.data,
  this.platform,
  this.artifactType,
});