ServiceAccount constructor

const ServiceAccount({
  1. String? apiVersion,
  2. bool? automountServiceAccountToken,
  3. List<LocalObjectReference>? imagePullSecrets,
  4. String? kind,
  5. ObjectMeta? metadata,
  6. List<ObjectReference>? secrets,
})

Default constructor.

Implementation

const ServiceAccount({
  this.apiVersion,
  this.automountServiceAccountToken,
  this.imagePullSecrets,
  this.kind,
  this.metadata,
  this.secrets,
});