Secret constructor

const Secret({
  1. String? apiVersion,
  2. Map<String, String>? data,
  3. bool? immutable,
  4. String? kind,
  5. ObjectMeta? metadata,
  6. Map<String, String>? stringData,
  7. String? type,
})

Default constructor.

Implementation

const Secret({
  this.apiVersion,
  this.data,
  this.immutable,
  this.kind,
  this.metadata,
  this.stringData,
  this.type,
});