V1ReplicaSet constructor

V1ReplicaSet({
  1. String? apiVersion,
  2. String? kind,
  3. V1ObjectMeta? metadata,
  4. V1ReplicaSetSpec? spec,
  5. V1ReplicaSetStatus? status,
})

Returns a new V1ReplicaSet instance.

Implementation

V1ReplicaSet({

   this.apiVersion,

   this.kind,

   this.metadata,

   this.spec,

   this.status,
});