ContainerImage constructor

ContainerImage({
  1. String? repository,
  2. String? tag,
})

Implementation

factory ContainerImage({
  $core.String? repository,
  $core.String? tag,
}) {
  final $result = create();
  if (repository != null) {
    $result.repository = repository;
  }
  if (tag != null) {
    $result.tag = tag;
  }
  return $result;
}