ResourceAttributes constructor

const ResourceAttributes({
  1. String? group,
  2. String? name,
  3. String? namespace,
  4. String? resource,
  5. String? subresource,
  6. String? verb,
  7. String? version,
})

Default constructor.

Implementation

const ResourceAttributes({
  this.group,
  this.name,
  this.namespace,
  this.resource,
  this.subresource,
  this.verb,
  this.version,
});