ServerSourceDto constructor

ServerSourceDto({
  1. String kind = 'import',
  2. String? registry,
  3. required String namespace,
  4. required String name,
  5. required String version,
  6. String? versionDigest,
  7. String? artifactId,
  8. String? artifactDigest,
  9. String? artifactMediaType,
  10. String? builtinBundleFamily,
  11. String? builtinBundleId,
  12. String? builtinKey,
})

Implementation

ServerSourceDto({
  this.kind = 'import',
  this.registry,
  required this.namespace,
  required this.name,
  required this.version,
  this.versionDigest,
  this.artifactId,
  this.artifactDigest,
  this.artifactMediaType,
  this.builtinBundleFamily,
  this.builtinBundleId,
  this.builtinKey,
});