EndpointConditions constructor

const EndpointConditions({
  1. bool? ready,
  2. bool? serving,
  3. bool? terminating,
})

Default constructor.

Implementation

const EndpointConditions({
  this.ready,
  this.serving,
  this.terminating,
});