ObjectMeta constructor

ObjectMeta({
  1. Map<String, String>? annotations,
  2. String? clusterName,
  3. String? creationTimestamp,
  4. int? deletionGracePeriodSeconds,
  5. String? deletionTimestamp,
  6. List<String>? finalizers,
  7. String? generateName,
  8. int? generation,
  9. Map<String, String>? labels,
  10. String? name,
  11. String? namespace,
  12. List<OwnerReference>? ownerReferences,
  13. String? resourceVersion,
  14. String? selfLink,
  15. String? uid,
})

Implementation

ObjectMeta({
  this.annotations,
  this.clusterName,
  this.creationTimestamp,
  this.deletionGracePeriodSeconds,
  this.deletionTimestamp,
  this.finalizers,
  this.generateName,
  this.generation,
  this.labels,
  this.name,
  this.namespace,
  this.ownerReferences,
  this.resourceVersion,
  this.selfLink,
  this.uid,
});