ObjectMeta constructor

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

Default constructor.

Implementation

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