ReplicationControllerSpec constructor

const ReplicationControllerSpec({
  1. int? minReadySeconds,
  2. int? replicas,
  3. Map<String, String>? selector,
  4. PodTemplateSpec? template,
})

The main constructor.

Implementation

const ReplicationControllerSpec({
  this.minReadySeconds,
  this.replicas,
  this.selector,
  this.template,
});